Home All Groups Group Topic Archive Search About

Servlet Counterpart in VB.NET

Author
11 Jul 2006 3:12 PM
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
  {
----------------------------------------------------------------------------------------------------------------

What is the counterpart in the Visual Basic .NET arena?  How about
"Posts" and "Gets"?

Author
11 Jul 2006 5:51 PM
tommaso.gastaldi
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

samadams_2***@yahoo.ca ha scritto:

Show quoteHide quote
> 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
>   {
> ----------------------------------------------------------------------------------------------------------------
>
> What is the counterpart in the Visual Basic .NET arena?  How about
> "Posts" and "Gets"?