<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
               xmlns:atom="http://www.w3.org/2005/Atom"
               xmlns:dc="http://purl.org/dc/elements/1.1/"
               xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
               xmlns:admin="http://webns.net/mvcb/"
               xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
               xmlns:content="http://purl.org/rss/1.0/modules/content/">
            <channel>
                <title>
                							Asp.net - DJobBuzz Blog Forum                                    </title>
                <link>https://geekfrisk.com/community/asp-net/</link>
                <description>DJobBuzz Blog Discussion Board</description>
                <language>en-US</language>
                <lastBuildDate>Sun, 12 Apr 2026 12:15:51 +0000</lastBuildDate>
                <generator>wpForo</generator>
                <ttl>60</ttl>
                					                    <item>
                        <title>Get count of rows in aspx file in asp.net</title>
                        <link>https://blog.djobbuzz.com/community/asp-net/get-count-of-rows-in-aspx-file-in-asp-net/</link>
                        <pubDate>Mon, 11 Oct 2021 14:18:44 +0000</pubDate>
                        <description><![CDATA[use below code to get it rows count
 
parseInt(&#039;&lt;%= this.ID.Rows.Count %&gt;&#039;);]]></description>
                        <content:encoded><![CDATA[<p>use below code to get it rows count</p>
<p> </p>
<pre contenteditable="false">parseInt('&lt;%= this.ID.Rows.Count %&gt;');</pre>]]></content:encoded>
                        <category domain="https://geekfrisk.com/community/asp-net/">Asp.net</category>                        <dc:creator>geekfrisk</dc:creator>
                        <guid isPermaLink="true">https://blog.djobbuzz.com/community/asp-net/get-count-of-rows-in-aspx-file-in-asp-net/</guid>
                    </item>
                                        <item>
                        <title>Row filter column name with space</title>
                        <link>https://blog.djobbuzz.com/community/asp-net/row-filter-column-name-with-space/</link>
                        <pubDate>Wed, 21 Jul 2021 10:28:02 +0000</pubDate>
                        <description><![CDATA[Just add Column name in square bracket, its will work
dvID.RowFilter=&quot; = &#039;&quot;+Value+&quot;&#039;&quot;;]]></description>
                        <content:encoded><![CDATA[<p>Just add Column name in square bracket, its will work</p>
<pre contenteditable="false">dvID.RowFilter=" = '"+Value+"'";</pre>]]></content:encoded>
                        <category domain="https://geekfrisk.com/community/asp-net/">Asp.net</category>                        <dc:creator>shubham</dc:creator>
                        <guid isPermaLink="true">https://blog.djobbuzz.com/community/asp-net/row-filter-column-name-with-space/</guid>
                    </item>
                                        <item>
                        <title>Access variable from Code behind file in Javascript</title>
                        <link>https://blog.djobbuzz.com/community/asp-net/access-variable-from-code-behind-file-in-javascript/</link>
                        <pubDate>Fri, 16 Jul 2021 11:46:12 +0000</pubDate>
                        <description><![CDATA[its simple just use the below code 
 
var item = &#039;&lt;%=VariableName%&gt;&#039;]]></description>
                        <content:encoded><![CDATA[<p>its simple just use the below code </p>
<p> </p>
<pre contenteditable="false">var item = '&lt;%=VariableName%&gt;'</pre>
<p> </p>]]></content:encoded>
                        <category domain="https://geekfrisk.com/community/asp-net/">Asp.net</category>                        <dc:creator>geekfrisk</dc:creator>
                        <guid isPermaLink="true">https://blog.djobbuzz.com/community/asp-net/access-variable-from-code-behind-file-in-javascript/</guid>
                    </item>
                                        <item>
                        <title>How to add user control dynamically in asp.net</title>
                        <link>https://blog.djobbuzz.com/community/asp-net/how-to-add-user-control-dynamically-in-asp-net/</link>
                        <pubDate>Thu, 15 Jul 2021 18:44:32 +0000</pubDate>
                        <description><![CDATA[Step 1 - Create User control with fields
Step 2- On Parent page create one div with id and runat server
 
Step 3- In parent page, code behind file write the below code to add user control...]]></description>
                        <content:encoded><![CDATA[<p>Step 1 - Create User control with fields</p>
<p>Step 2- On Parent page create one div with id and runat server</p>
<div id="dvUcControl"> </div>
<p>Step 3- In parent page, code behind file write the below code to add user control </p>
<p> </p>
<pre contenteditable="false">Control ctrl =Page.LoadControl("PathOfUserControl");

dvUcControl.Controls.Clear();

dvUcControl.Controls.Add(ctrl);</pre>
<p> </p>
<p>To get fields from User  control , just refer the below code</p>
<p>example- Textbox</p>
<p> </p>
<pre contenteditable="false">TextBox txt=ctrl.FindControl("IdOfTextbox") as TextBox;

txt.Text="Working demo";</pre>
<p> </p>]]></content:encoded>
                        <category domain="https://geekfrisk.com/community/asp-net/">Asp.net</category>                        <dc:creator>dotnet</dc:creator>
                        <guid isPermaLink="true">https://blog.djobbuzz.com/community/asp-net/how-to-add-user-control-dynamically-in-asp-net/</guid>
                    </item>
                                                </channel>
        </rss>
        