How do you access individual items of an Master Page
Answer Posted / kevin m
Best not to let the content page know about a control.
Expose what is needed by public properties on the master page, makes the solution far more flexible and decoupled.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Can we set which type of comparison we want to perform by the CompareValidator control?
Describe Segmentation With Paging?
How can we make sure that Web API returns JSON data only?
What are the difference between function and stored procedure in .net programming language?
Explain Areas in MVC?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
What is Model-View-View Model?
What are the features of asp net?
Explain ViewState?
If you want to write your own dot net language, what steps you will you take care?
Is asp.net 64-bit enabled? How?
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 = "
Which control has default post back is enabled(true)?
How you will handle session when deploying application in more than a server?
What is http post and http get?