Where would you use an iHTTPModule, and what are the
limitations of any approach you might take in implementing one?

Answer Posted / guest

One of ASP.NET?s most useful features is the extensibility
of the HTTP pipeline, the path that data takes between
client and server. You can use them to extend your ASP.NET
applications by adding pre- and post-processing to each HTTP
request coming into your application. For example, if you
wanted custom authentication facilities for your
application, the best technique would be to intercept the
request when it comes in and process the requesting a custom
HTTP module

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is page fragment caching?

556


Which is faster viewbag or viewdata?

568


What is asp.net master page?

557


What is the difference between table and query?

548


What are sessions in asp net?

528






What is new asp.net core?

575


Explain what benefit does your code receive if you decorate it with attributes demanding specific security permissions?

527


What are assemblies and namespaces and explain the difference between them ?

570


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

1736


How do active server pages work?

550


What are sharepoint pages?

499


How does ASP.NET framework maps client side events to Server side events.?

555


What is a postback in asp net?

541


What is advantage of asp.net?

551


Why do we need asp.net?

597