<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for I Learnt Today...</title>
	<atom:link href="http://www.ilearnttoday.com/index.php/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ilearnttoday.com</link>
	<description>This is where I share things I learn day by day !</description>
	<lastBuildDate>Thu, 27 May 2010 12:44:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on How Fibonacci Sequence Relates to Nature by isacca newton</title>
		<link>http://www.ilearnttoday.com/index.php/how-fibonacci-sequence-relates-to-nature/comment-page-1#comment-100</link>
		<dc:creator>isacca newton</dc:creator>
		<pubDate>Thu, 27 May 2010 12:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=256#comment-100</guid>
		<description>this is really good(:</description>
		<content:encoded><![CDATA[<p>this is really good(:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Use Checkbox in Gridview to Select Multiple Rows by pes</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-select-multiple-rows-in-a-grid-view-using-check-boxes/comment-page-1#comment-51</link>
		<dc:creator>pes</dc:creator>
		<pubDate>Sun, 04 Apr 2010 07:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=221#comment-51</guid>
		<description>hello,
i want to display the row selected from 1 grid into another grid.How do i go about?</description>
		<content:encoded><![CDATA[<p>hello,<br />
i want to display the row selected from 1 grid into another grid.How do i go about?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Keep Modified Data of Template Fields when Paging is Enabled? by Shahrouz Ebadian</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-how-to-keep-modified-data-of-template-fields-when-paging-is-enabled/comment-page-1#comment-17</link>
		<dc:creator>Shahrouz Ebadian</dc:creator>
		<pubDate>Wed, 24 Mar 2010 15:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=78#comment-17</guid>
		<description>Hi I would love to see the code for this as well.

thanks!</description>
		<content:encoded><![CDATA[<p>Hi I would love to see the code for this as well.</p>
<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Keep Modified Data of Template Fields when Paging is Enabled? by Levitra Cialis Viagra</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-how-to-keep-modified-data-of-template-fields-when-paging-is-enabled/comment-page-1#comment-16</link>
		<dc:creator>Levitra Cialis Viagra</dc:creator>
		<pubDate>Sun, 14 Mar 2010 04:20:35 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=78#comment-16</guid>
		<description>Now all became clear, many thanks for the information. You have very much helped me.</description>
		<content:encoded><![CDATA[<p>Now all became clear, many thanks for the information. You have very much helped me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Keep Modified Data of Template Fields when Paging is Enabled? by Saravanan</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-how-to-keep-modified-data-of-template-fields-when-paging-is-enabled/comment-page-1#comment-15</link>
		<dc:creator>Saravanan</dc:creator>
		<pubDate>Tue, 02 Mar 2010 09:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=78#comment-15</guid>
		<description>Hi Menol,

I would like to view the Source Code, Kindly Send it.

Thanks for your Help
Saravanan</description>
		<content:encoded><![CDATA[<p>Hi Menol,</p>
<p>I would like to view the Source Code, Kindly Send it.</p>
<p>Thanks for your Help<br />
Saravanan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Use Checkbox in Gridview to Select Multiple Rows by abhinav</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-select-multiple-rows-in-a-grid-view-using-check-boxes/comment-page-1#comment-35</link>
		<dc:creator>abhinav</dc:creator>
		<pubDate>Mon, 01 Mar 2010 18:44:17 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=221#comment-35</guid>
		<description>hi menol, i have a problem when i want to insert the check box column(which is selected by user) in the grid view into the database .my code looks like:-
---------------------------------------------------------------

 protected void Button1_Click(object sender, EventArgs e)
        {


            ArrayList names = new ArrayList();
foreach (GridViewRow gvr in this.GridView1.Rows)
{
if (((CheckBox)gvr.FindControl(&quot;c&quot;)).Checked == true)
{
names.Add( gvr.Cells[0].Text);


}
}

//this.Label2.Text = string.Empty;
foreach (object itm in names)
{
this.Label2.Text +=itm.ToString();
    SqlDataAdapter dal = new SqlDataAdapter(&quot;select projectid from tblproject where projectname=&#039;&quot;+itm.ToString()+&quot;&#039; &quot;, abhiconnectionstring);
    DataSet ds = new DataSet();
    dal.Fill(ds);
    int s = int.Parse(ds.Tables[0].Rows[0][0].ToString());

    abhiconnectionstring.Open();
    SqlCommand cmd = new SqlCommand(&quot;insert into tbltechskill (personid,projectid) values(&#039;&quot; + TextBox3.Text.ToString() + &quot;&#039;,&#039;&quot; +s+ &quot;&#039;) &quot;, abhiconnectionstring);
    cmd.ExecuteNonQuery();
    abhiconnectionstring.Close();
   // Response.Redirect(&quot;project.aspx&quot;);
}
 ------------------------------------------------------------but the problem is , selected checkbox value are not coming into the object itm i.e (itm.string()) ..........can you please help me</description>
		<content:encoded><![CDATA[<p>hi menol, i have a problem when i want to insert the check box column(which is selected by user) in the grid view into the database .my code looks like:-<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p> protected void Button1_Click(object sender, EventArgs e)<br />
        {</p>
<p>            ArrayList names = new ArrayList();<br />
foreach (GridViewRow gvr in this.GridView1.Rows)<br />
{<br />
if (((CheckBox)gvr.FindControl(&#8220;c&#8221;)).Checked == true)<br />
{<br />
names.Add( gvr.Cells[0].Text);</p>
<p>}<br />
}</p>
<p>//this.Label2.Text = string.Empty;<br />
foreach (object itm in names)<br />
{<br />
this.Label2.Text +=itm.ToString();<br />
    SqlDataAdapter dal = new SqlDataAdapter(&#8220;select projectid from tblproject where projectname=&#8217;&#8221;+itm.ToString()+&#8221;&#8216; &#8220;, abhiconnectionstring);<br />
    DataSet ds = new DataSet();<br />
    dal.Fill(ds);<br />
    int s = int.Parse(ds.Tables[0].Rows[0][0].ToString());</p>
<p>    abhiconnectionstring.Open();<br />
    SqlCommand cmd = new SqlCommand(&#8220;insert into tbltechskill (personid,projectid) values(&#8216;&#8221; + TextBox3.Text.ToString() + &#8220;&#8216;,&#8217;&#8221; +s+ &#8220;&#8216;) &#8220;, abhiconnectionstring);<br />
    cmd.ExecuteNonQuery();<br />
    abhiconnectionstring.Close();<br />
   // Response.Redirect(&#8220;project.aspx&#8221;);<br />
}<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;but the problem is , selected checkbox value are not coming into the object itm i.e (itm.string()) &#8230;&#8230;&#8230;.can you please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Keep Modified Data of Template Fields when Paging is Enabled? by Siva</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-how-to-keep-modified-data-of-template-fields-when-paging-is-enabled/comment-page-1#comment-14</link>
		<dc:creator>Siva</dc:creator>
		<pubDate>Fri, 26 Feb 2010 04:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=78#comment-14</guid>
		<description>Please send me the code. I would like to go through it.

Regards
Siva</description>
		<content:encoded><![CDATA[<p>Please send me the code. I would like to go through it.</p>
<p>Regards<br />
Siva</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Keep Modified Data of Template Fields when Paging is Enabled? by Vikas Goyal</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-how-to-keep-modified-data-of-template-fields-when-paging-is-enabled/comment-page-1#comment-13</link>
		<dc:creator>Vikas Goyal</dc:creator>
		<pubDate>Thu, 25 Feb 2010 13:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=78#comment-13</guid>
		<description>Hi,

I am having exactly the same problem as mentioned above(&quot;How to Keep Modified Data of Template Fields when Paging is Enabled?&quot;).Can you please provide me with the source code for this problem.
Any help would be appriciated.
Thanks in advance

Regards
Vikas Goyal</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am having exactly the same problem as mentioned above(&#8220;How to Keep Modified Data of Template Fields when Paging is Enabled?&#8221;).Can you please provide me with the source code for this problem.<br />
Any help would be appriciated.<br />
Thanks in advance</p>
<p>Regards<br />
Vikas Goyal</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Keep Modified Data of Template Fields when Paging is Enabled? by kemi</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-how-to-keep-modified-data-of-template-fields-when-paging-is-enabled/comment-page-1#comment-12</link>
		<dc:creator>kemi</dc:creator>
		<pubDate>Mon, 01 Feb 2010 21:16:21 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=78#comment-12</guid>
		<description>Is is possible to have your source code? I&#039;ve been searching for a solution to retaining values of textboxes in a gridview control.

Thanks,
Kemi</description>
		<content:encoded><![CDATA[<p>Is is possible to have your source code? I&#8217;ve been searching for a solution to retaining values of textboxes in a gridview control.</p>
<p>Thanks,<br />
Kemi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# ASP.NET &#8211; GridView : How to Keep Modified Data of Template Fields when Paging is Enabled? by Naveen.</title>
		<link>http://www.ilearnttoday.com/index.php/c-aspnet-gridview-how-to-keep-modified-data-of-template-fields-when-paging-is-enabled/comment-page-1#comment-11</link>
		<dc:creator>Naveen.</dc:creator>
		<pubDate>Tue, 29 Dec 2009 12:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://ilearnttoday.wordpress.com/?p=78#comment-11</guid>
		<description>Hi menol,
hope u r ok and doing well.
i need ur favour,that im struggling to keeping the 1st page template field values..while paging. could u plz forward the coding samples to me..

Thank u
Naveen.</description>
		<content:encoded><![CDATA[<p>Hi menol,<br />
hope u r ok and doing well.<br />
i need ur favour,that im struggling to keeping the 1st page template field values..while paging. could u plz forward the coding samples to me..</p>
<p>Thank u<br />
Naveen.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
