What is the difference between an EXE and a DLL?
Answer Posted / govardhan
EXE is a Self Executable File where as dll is not self
executable file,To run dll file we need a exe file
| Is This Answer Correct ? | 62 Yes | 7 No |
Post New Answer View All Answers
Explain asp.net page life cycle?
Describe the application event handlers in 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 = "
Can action method static?
How to fetch a data from one table to another table in asp.net ?
Describe how ASP.NET maintains process isolation for each Web application?
Explain about the .NET framework?
Explain how is a property designated as read-only?
What is a web api endpoint?
Explain diff between dataset and datareader?
What is asp net application object?
while developing webservices if i want some users to use my webservice only how can i give security to my webservice?
How can you register a custom server control to a web page?
What is difference between rest and soap?
How do you declare static variable? What is its lifetime?