<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss'><id>tag:blogger.com,1999:blog-8751734397145557426</id><updated>2009-10-13T15:34:46.077-07:00</updated><title type='text'>Asp.Net</title><subtitle type='html'>Please give your comments</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8751734397145557426.post-3437126286608075654</id><published>2008-03-10T06:32:00.000-07:00</published><updated>2008-06-12T06:55:37.612-07:00</updated><title type='text'>GridView with Caching</title><content type='html'>Hi Friends,&lt;br /&gt;&lt;br /&gt;Here we learn how we increase the speed of our application by using caching.&lt;br /&gt;&lt;br /&gt;Lets start what we will done.&lt;br /&gt;we create a simple application where using a gridview and bind with database and using cache for speed our application.&lt;br /&gt;&lt;br /&gt;Lets Start&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The codes of .cs&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;using System;&lt;br /&gt;using System.Data;&lt;br /&gt;using System.Web.Caching;&lt;br /&gt;/* Please remember to import SqlClient namespace */&lt;br /&gt;using System.Data.SqlClient;&lt;br /&gt;&lt;br /&gt;public partial class GridView_Default : System.Web.UI.Page&lt;br /&gt;{&lt;br /&gt;protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;/* Check whether the page is post back or not */&lt;br /&gt;&lt;br /&gt;if (!Page.IsPostBack)&lt;br /&gt;{&lt;br /&gt;BindData();&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;private void BindData()&lt;br /&gt;{&lt;br /&gt;if (Cache["Cache"] == null)&lt;br /&gt;{&lt;br /&gt;SqlConnection con = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=DataDirectorymysql.mdf;Integrated Security=True;User Instance=True");&lt;br /&gt;SqlDataAdapter ad = new SqlDataAdapter("select * from sqltest", con);&lt;br /&gt;DataSet ds = new DataSet();&lt;br /&gt;ad.Fill(ds);&lt;br /&gt;Cache.Insert("Cache", ds, null , DateTime.Now.AddMinutes(2), TimeSpan.Zero);&lt;br /&gt;&lt;br /&gt;GridView1.DataSource = ds;&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;GridView1.DataSource = (DataSet)Cache["Cache"];&lt;br /&gt;GridView1.DataBind();&lt;br /&gt;}&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8751734397145557426-3437126286608075654?l=qureshi-zubair.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/3437126286608075654/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8751734397145557426&amp;postID=3437126286608075654' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/3437126286608075654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/3437126286608075654'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/2008/03/gridview-with-caching.html' title='GridView with Caching'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='11997292827377853848'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8751734397145557426.post-1212771638809899981</id><published>2008-01-16T01:07:00.000-08:00</published><updated>2008-01-17T04:45:02.743-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net-gridview'/><title type='text'>Microsoft Grid View Part - I</title><content type='html'>hi friends, in the 1429 hijri, i once again teach you the gridview in easy manner with images and more explanation please read all the part of this serious to understand the grid view. so now please go step wise.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 1:&lt;br /&gt;Database&lt;/strong&gt;&lt;br /&gt;I created a database called mysql and saved it in the same folder which have table called sqltest with fields.&lt;br /&gt;&lt;img src="http://4.bp.blogspot.com/_9iXZ9wYAO4I/R49Km7n_yiI/AAAAAAAAADA/vPwWU-fCGXM/s320/db.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5156422131063441954" /&gt;&lt;br /&gt;&lt;strong&gt;Step 2:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Drag the grid view from the toolbox &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Step 3:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;now on the Default.aspx.cs or whatever you given the name of form write this coding&lt;br /&gt;&lt;br /&gt;using System;&lt;br /&gt;using System.Data;&lt;br /&gt;/* Please remember to import SqlClient namespace  */&lt;br /&gt;&lt;strong&gt;using System.Data.SqlClient;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;public partial class GridView_Default : System.Web.UI.Page&lt;br /&gt;{&lt;br /&gt;    protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;    {&lt;br /&gt;        /* Check whether the page is post back or not */&lt;br /&gt;&lt;br /&gt;        if (!Page.IsPostBack)&lt;br /&gt;        {&lt;br /&gt;            BindData();&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    private void BindData()&lt;br /&gt;    {&lt;br /&gt;        SqlConnection con= new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|mysql.mdf;Integrated Security=True;User Instance=True");&lt;br /&gt;        SqlDataAdapter ad = new SqlDataAdapter("select * from sqltest",con);&lt;br /&gt;        DataSet ds = new DataSet();&lt;br /&gt;        ad.Fill(ds);&lt;br /&gt;        GridView1.DataSource = ds;&lt;br /&gt;        GridView1.DataBind();&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;The Output is :&lt;br /&gt;&lt;img src="http://4.bp.blogspot.com/_9iXZ9wYAO4I/R49L47n_yjI/AAAAAAAAADI/ZqaNXwavU4k/s320/1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5156423539812715058" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8751734397145557426-1212771638809899981?l=qureshi-zubair.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/1212771638809899981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8751734397145557426&amp;postID=1212771638809899981' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/1212771638809899981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/1212771638809899981'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/2008/01/grid-view-part-i.html' title='Microsoft Grid View Part - I'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='11997292827377853848'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_9iXZ9wYAO4I/R49Km7n_yiI/AAAAAAAAADA/vPwWU-fCGXM/s72-c/db.jpg' height='72' width='72'/><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8751734397145557426.post-7379211126506722253</id><published>2007-12-18T04:08:00.000-08:00</published><updated>2007-12-18T04:11:07.690-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net-gridview'/><title type='text'>Learn GridView - Part IV (Deleting Mode)</title><content type='html'>hi, now we are going to learn how we delete data from gridview&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; protected void GridView1_RowDeleting(Object sender, GridViewDeleteEventArgs e)&lt;br /&gt;    {&lt;br /&gt;        int id = (int)GridView1.DataKeys[e.RowIndex].Value;&lt;br /&gt;&lt;br /&gt;        SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);&lt;br /&gt;        SqlCommand command = new SqlCommand("delete from sqltest where CustId='"+id+"'",con);&lt;br /&gt;        command.Connection.Open();&lt;br /&gt;        command.ExecuteNonQuery();&lt;br /&gt;        command.Connection.Close();&lt;br /&gt;&lt;br /&gt;        GridView1.EditIndex = -1;&lt;br /&gt;        BindData();&lt;br /&gt;    }&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8751734397145557426-7379211126506722253?l=qureshi-zubair.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/7379211126506722253/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8751734397145557426&amp;postID=7379211126506722253' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/7379211126506722253'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/7379211126506722253'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/2007/12/learn-gridview-part-iv-deleting-mode.html' title='Learn GridView - Part IV (Deleting Mode)'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='11997292827377853848'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8751734397145557426.post-2977908578027561770</id><published>2007-12-18T04:01:00.000-08:00</published><updated>2007-12-18T04:10:52.087-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net-gridview'/><title type='text'>Learn GridView - Part III (Updating Mode)</title><content type='html'>now we are going to learn how we update the gridview&lt;br /&gt;&lt;br /&gt;see this:&lt;br /&gt;&lt;br /&gt;protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)&lt;br /&gt;{&lt;br /&gt;    int id = (int)GridView1.DataKeys[e.RowIndex].Value;&lt;br /&gt;&lt;br /&gt;        GridViewRow row = GridView1.Rows[e.RowIndex];&lt;br /&gt;&lt;br /&gt;        string name = ((TextBox)row.FindControl("TextBox1")).Text;&lt;br /&gt;        string city = ((TextBox)row.FindControl("TextBox2")).Text;&lt;br /&gt;&lt;br /&gt;        SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);&lt;br /&gt;        SqlCommand command = new SqlCommand("update sqltest set Name='" + name + "',City='" + city + "' where CustId='" + id + "'",con);&lt;br /&gt;        command.Connection.Open();&lt;br /&gt;        command.ExecuteNonQuery();&lt;br /&gt;        command.Connection.Close();&lt;br /&gt;&lt;br /&gt;        GridView1.EditIndex = -1;&lt;br /&gt;        BindData();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;please give your feedback..........&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8751734397145557426-2977908578027561770?l=qureshi-zubair.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/2977908578027561770/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8751734397145557426&amp;postID=2977908578027561770' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/2977908578027561770'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/2977908578027561770'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/2007/12/learn-gridview-part-iii-updating-mode.html' title='Learn GridView - Part III (Updating Mode)'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='11997292827377853848'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8751734397145557426.post-3085090188317326631</id><published>2007-12-11T03:56:00.001-08:00</published><updated>2007-12-11T04:17:31.935-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net-gridview'/><title type='text'>Learn GridView - Part III (Changing Mode)</title><content type='html'>hi friends once again i am with you.&lt;br /&gt;&lt;br /&gt;now we are going to learn how we change the mode of the grid view.&lt;br /&gt;please remember read my post from first to this to learn the grid view in simplest manner.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;how you display the edit link on the gridview.&lt;/strong&gt;&lt;br /&gt;in Default.aspx click on the gridview now goes to property of it there is an &lt;strong&gt;AutoGenerateEditButton&lt;/strong&gt; make it true.&lt;br /&gt;&lt;br /&gt;please read and write the coding below :&lt;br /&gt;&lt;br /&gt;protected void GridView1_RowEditing(object sender,GridViewEditEventArgs e)&lt;br /&gt;{&lt;br /&gt;      GridView1.EditIndex = e.NewEditIndex;&lt;br /&gt;      BindData(); // &lt;em&gt;please see the Part - I for this coding&lt;/em&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;protected void GridView1_RowCancelling(object sender, GridViewCancelEditEventArgs e)&lt;br /&gt;{&lt;br /&gt;      GridView.EditIndex = -1;&lt;br /&gt;      BindData(); // &lt;em&gt;please see the Part - I for this coding&lt;/em&gt;&lt;br /&gt;}&lt;br /&gt;hope this help you :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8751734397145557426-3085090188317326631?l=qureshi-zubair.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/3085090188317326631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8751734397145557426&amp;postID=3085090188317326631' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/3085090188317326631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/3085090188317326631'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/2007/12/learn-gridview-part-iii-changing-mode.html' title='Learn GridView - Part III (Changing Mode)'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='11997292827377853848'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8751734397145557426.post-6204617025959325535</id><published>2007-12-11T03:39:00.000-08:00</published><updated>2007-12-11T04:16:55.344-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net-gridview'/><title type='text'>Learn GridView - Part II (Changing PageIndex)</title><content type='html'>in this we learn how we change the page index of the grid view.&lt;br /&gt;&lt;br /&gt;only write the coding in Default.aspx.cs&lt;br /&gt;&lt;br /&gt;protected void PageIndexChanging(object sender, GridViewPageEventArgs e)&lt;br /&gt;{&lt;br /&gt;GridView1.PageIndex = e.NewPageIndex;&lt;br /&gt;BindData(); // &lt;em&gt;define the coding in previous post&lt;strong&gt; Learn GridView - Part-I&lt;br /&gt;&lt;/strong&gt;&lt;/em&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8751734397145557426-6204617025959325535?l=qureshi-zubair.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/6204617025959325535/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8751734397145557426&amp;postID=6204617025959325535' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/6204617025959325535'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/6204617025959325535'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/2007/12/learn-gridview-part-ii.html' title='Learn GridView - Part II (Changing PageIndex)'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='11997292827377853848'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8751734397145557426.post-4401875633605720697</id><published>2007-12-11T02:11:00.000-08:00</published><updated>2007-12-19T23:45:10.839-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net-gridview'/><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><title type='text'>Learn GridView - Part I</title><content type='html'>hi this is zubair, i going to teach gridview with easiest way.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;First Step: &lt;/strong&gt;first i describe you about our database in sql server 2005.&lt;br /&gt;Database name is &lt;strong&gt;publicDB&lt;/strong&gt;, Table name is &lt;strong&gt;sqltest&lt;/strong&gt; which have two columns&lt;strong&gt; Name and City&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Second Step:&lt;/strong&gt;&lt;br /&gt;Open the visual web developer 2005.&lt;br /&gt;click on new tab -&gt; select new website -&gt; give it name as u wish.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Third Step:&lt;/strong&gt;&lt;br /&gt;now on the &lt;strong&gt;default.aspx&lt;/strong&gt; page drag the gridview control from the control box.&lt;br /&gt;&lt;br /&gt;write the code in &lt;strong&gt;web.config&lt;/strong&gt; as follows:&lt;br /&gt;&lt;br /&gt;&lt;connectionstrings&gt;&lt;br /&gt;&lt;add name="ConnectionString"&lt;br /&gt;connectionString="Server    ='YourServerName'&lt;br /&gt;                                  Database='publicDb'&lt;br /&gt;                                  Trusted_Connection='True' "&lt;br /&gt;providerName="System.Data.SqlClient" /&gt;&lt;br /&gt;&lt;/connectionstrings&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Fourth Step:&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;now we are going to write the coding in Default.aspx.cs&lt;br /&gt;open the &lt;strong&gt;Default.aspx.cs&lt;/strong&gt; and write the code below.&lt;br /&gt;&lt;br /&gt;protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;      BindData();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public void BindData()&lt;br /&gt;{&lt;br /&gt;      SqlConnection con = new SqlConnection(ConfiguratonManager.ConnectionStrings["ConnectionString"].ConnectionString);&lt;br /&gt;&lt;br /&gt;SqlDataAdapter ad = new SqlDataAdapter("Select * from sqltest",con);&lt;br /&gt;&lt;br /&gt;DataSet ds = new DataSet();&lt;br /&gt;&lt;br /&gt;ad.Fill(ds);&lt;br /&gt;&lt;br /&gt;GridView1.DataSource = ds;&lt;br /&gt;GridView1.DataBind();&lt;br /&gt;&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8751734397145557426-4401875633605720697?l=qureshi-zubair.blogspot.com'/&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qureshi-zubair.blogspot.com/feeds/4401875633605720697/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://www.blogger.com/comment.g?blogID=8751734397145557426&amp;postID=4401875633605720697' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/4401875633605720697'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8751734397145557426/posts/default/4401875633605720697'/><link rel='alternate' type='text/html' href='http://qureshi-zubair.blogspot.com/2007/12/learn-gridview-in-c.html' title='Learn GridView - Part I'/><author><name>Qureshi Zubair Alam</name><uri>http://www.blogger.com/profile/16160494808204940590</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='11997292827377853848'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry></feed>