which is best possible way to add data source to data grid
when the data is huge(10 lack recored)how to edit a
perticular row
Answer Posted / vyas pyk
by using the sqldatasource bind the datagrid obviously we
will be having a primarykey for that particular table, and
after that put a tick mark on the "Allow Editing" option on
tha grid smart tag.
Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Which browsers support the xmlhttprequest object?
Can we create a multiple user simultaneously ?
What is viewstate parameter?
Can you explain the importance of finalize method in .net?
How you can access the properties and controls of master pages from content pages?
Explain About duration in caching technique
How does http session work?
What are the different authentication modes in asp.net?
What is the basic purpose of the required field validator? How can you use a required field validator to check that the user changes the initial value of a text box? a listbox?
Explain the server control events of asp.net ?
What are the differences between clr & cts?
What is viewstate in asp net with example?
What is the server of asp.net?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
What is bound controls