Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
16k views

Using request.setAttribute in a JSP page

Is it possible to use request.setAttribute on a JSP page and then on HTML Submit get the same request attribute in the Servlet?
2
votes
2answers
318 views

How to programmatically distinguish element/control types from ASP.NET Request.Form key/value collection?

I have a simple ASP.NET web form as below: <form id="form1" runat="server"> <asp:TextBox ID="txt" runat="server"></asp:TextBox> <asp:DropDownList ID="ddl" ...
2
votes
5answers
11k views

JSP, Parameter Passing without use of HTML Forms

I have done some research, and majority of the examples I have found use forms (obviously for user input) to collect data which is then passed to another JSP page through the request object. My ...