Servlet Counterpart in VB.NET

  • Thread starter Thread starter samadams_2006
  • Start date Start date
S

samadams_2006

In the Java world you create a Servlet that extends the HttpServlet
Class, as in:

----------------------------------------------------------------------------------------------------------------
public class ExampServlet extends HttpServlet {
public void doPost(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
 
I am not familiar with the servelet stuff, but it sound like you need
to take a look at the
IHttpHandler interface. Take a look in the help to see if it is what
you need ...

-tom

(e-mail address removed) ha scritto:
 
Back
Top