Nov 28, 2008

Fill Gridview with Disconnected Architecture

protected void Page_Load(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("Server="Yours";database="Yours";Integrated Security=true");
SqlDataAdapter da = new SqlDataAdapter("Select * from Login", conn);
ds = new DataSet();
da.Fill(ds, "Login");
GridView1.DataSource = ds.Tables[0].DefaultView;
GridView1.DataBind();
}

Nov 14, 2008

Wanna do Interview Preparation?

Just follow bellow sites:

For Online :
www.careerride.com
www.geekinterview.com
www.dotnetinterviewquestions.com

For Hard Copy(in India):
www.questpond.com


Best of luck.



-----------------------------------------------------

Difference Between VS 2003 and VS2005

Hi, Friends
Do you want to know the real difference then see the link

http://quickstarts.asp.net/QuickStartv20/aspnet/doc/whatsnew.aspx


----------------------------------------------------

Image Gallery - Image Add/Delete/Preview - Single Page App -

https://github.com/TheKalin/jQuery-File-Upload.MVC5 Helper Class / Models   public class FilesHelperDB     {         dbImageGallery...