Originally posted by Plater
-the data can be generated on page1.aspx and saved on page2.aspx right?
-the insert() method can be placed in the page1.aspx code and it'll save on page2 provided the gridview is configured for the datasource right?
-can i configure 2 gridviews on seperate pages with 1 datasource? i want one to be read-only and the other editable. is it possible?
-the datasource mode property is set to dataset. so am i to create a new object of the dataset or configuring the datasource and gridview takes care of all that?
Code:
addstudentinfo.InsertParameters["Surname"].DefaultValue = TextBox1.Text.ToString(); addstudentinfo.InsertParameters["Names"].DefaultValue = TextBox2.Text.ToString(); addstudentinfo.InsertParameters["Regno"].DefaultValue = TextBox3.Text.ToString();
thanks...
Comment