What is ISAPI?

Answer Posted / mahesh kotekar

ISAPI is the handler running in IIS server. WHen the request
comes from the client ISAPI is responsible for sending those
request particular to aspx pages to aspnet_WP workerprocess
which will process the request.

Is This Answer Correct ?    15 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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

1723


What is a Cookie? Where is it used in ASP.NET?

602


Is asp.net and .net the same?

506


Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?

532


How do I open an ashx file in windows 7?

564






What are the layouts of ASP.NET Pages?

609


How to integrate angular 8 with asp.net mvc 5? : Asp.Net MVC

491


How many types of sessions are there in asp net?

516


What is a windows service?

550


Will session work if cookies is disabled?

517


Explain the various authentication mechanisms in asp.net.

479


Is sql backend or frontend?

551


How can you send an email message from an asp.net web page?

517


Explain culture and uiculture values.

534


Differentiate the session object and application object?

526