|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Servlet Counterpart in VB.NETIn 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"? 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"? |
|||||||||||||||||||||||