Describe the difference between inline and code behind.
Answer Posted / ramgopal reddy
Inline code written along side the html in a page.
Code-behind is code written in a separate file and
referenced by the .aspx page.
| Is This Answer Correct ? | 36 Yes | 3 No |
Post New Answer View All Answers
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 are cookies in your browser?
Why session management is required?
Define page output caching?
Are there resources online with tips on asp to asp.net conversions?
What is the adavantage of using ASP.NET routing?
Define authentication and authorization.
Where can I get information on cookies in asp.net?
What are the main advantages of using asp.net?
Give an example of cookie abuse.
What is the difference between visual basic and asp.net?
What is the difference between the response.write() and response.output.write() methods?
What is the difference between table and query?
Why is global asax is used for?
What are the event handlers that we can have in global.asax file?