what is .net

Answer Posted / yash

i think i m not sure , but .net is a collection of
foundation classes, linker,loader and compilers.The .net
provides us an environment in which we can build an application.

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we have 2 web config files?

621


Differentiate between client-side and server-side validations in web pages.

653


How many types of cookies are available in asp?

679


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 = "" & TxtEmpId.Text & "" & _ "" & TxtName.Text & "" & _ "" & TxtSalary.Text & "" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file 100 xxx 2000 yyy dddd 77777 rrrr rrrr 6666 qaqa sini 50000 errrrrrrrr rrrrrrrrr 677777 rrr rrr 33

1819


Where the cookie value is stored?

607






In a webservice, need to display 10 rows from a table. Which is the best choice among datareader or dataset?

761


Is there any alternative to avoid name collisions other then Namespaces?

674


What are HTTP handlers in ASP.NET?

664


What is redirecting behavior?

622


What is content page in asp net?

587


What are the page life cycle events?

583


Explain the function of new view engine in asp.net? : asp.net mvc

621


What is in a session cookie?

614


Where is cookie used in asp.net?

660


Can the validation occurs in server-side or client-side? If the validation occurs why should we do?

712