-----------------------------------------------------------
New Message on BDOTNET
-----------------------------------------------------------
From: Rupreet Singh
Message 4 in Discussion
Hi!
Actually when you have to populate the datagrid, you have to give the dataset name in
the datagrid source and then bind with it
Here is how you do this!
private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
MyOleDbDataAdapter.Fill(ds1,"Emp");
Datagrid1.Datasource; = ds1 //ds1 is the name of the dataset
Datagrid1.DataBind();
}
I have marked the lines in red that you have to add in your code.
And also another tip for you always out this code in a if block which should check
it�s a post back or not �like
Private void Page_Load (object sender, System EventArgs e)
{
if ( ! Page.IsPostBack)
{
MyOleDbAdapter.Fill(ds1, �Emp�);
DataGrid1.DataSource = ds1;
DataGrid1.DataBind();
}
}
This is because when you click on a button, and you have not put the if block, it�ll
again populate the datagrid.
Hope it helps :)
If the problem persist, do post it back !!
Thanks and Regards,
Rupreet Singh
Software Engineer
-----------------------------------------------------------
To stop getting this e-mail, or change how often it arrives, go to your E-mail
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw
Need help? If you've forgotten your password, please go to Passport Member Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help
For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact
If you do not want to receive future e-mail from this MSN group, or if you received
this message by mistake, please click the "Remove" link below. On the pre-addressed
e-mail message that opens, simply click "Send". Your e-mail address will be deleted
from this group's mailing list.
mailto:[EMAIL PROTECTED]