Click here to Skip to main content
15,913,722 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: dropdown list state problem Pin
Asim N.21-Jun-04 21:20
Asim N.21-Jun-04 21:20 
QuestionHelp me to figure this out please? Pin
JasonFoshee20-Jun-04 19:22
JasonFoshee20-Jun-04 19:22 
AnswerRe: Help me to figure this out please? Pin
VenkatFor.NET21-Jun-04 16:53
VenkatFor.NET21-Jun-04 16:53 
GeneralRe: Help me to figure this out please? Pin
JasonFoshee22-Jun-04 3:24
JasonFoshee22-Jun-04 3:24 
GeneralMouseUp outside link/text? (Netscape) Pin
alexiworld20-Jun-04 2:42
alexiworld20-Jun-04 2:42 
GeneralMouseUp in other frame? (Netscape) Pin
alexiworld19-Jun-04 20:55
alexiworld19-Jun-04 20:55 
GeneralPassing multiple values Pin
Ph@ntom19-Jun-04 2:09
Ph@ntom19-Jun-04 2:09 
GeneralRe: Passing multiple values Pin
Roger Wright19-Jun-04 3:48
professionalRoger Wright19-Jun-04 3:48 
Using the query string limits you, as you mention. That's why there is a second method supported - POST. Using this method, each element on the form has a name attribute and a value. When you submit it, the target page can access the value of each element by using Variable = Request.Form("Name"). For example, the form

<FORM Action = "VerifyUsrName.asp" Method=POST>
<P><INPUT Name = "usrName" Type = "text"></P>
<P><INPUT Type = "Reset" Value = "Reset Data"></P>
<P><INPUT Type = "Submit" Value = "Click to Send"></P>
</FORM>

accepts a single item - the name of the user. In the target page, VerifyUsrName.asp, the script between <BODY> tags

<%
Dim strUsr
strUsr = Request.Form("usrName")
%>

will pass the name entered by the user on the form to the variable strUsr on the verification page.

Some people think of it as a six-pack; I consider it more of a support group.
GeneralRe: Passing multiple values Pin
Rohit  Sinha19-Jun-04 18:57
Rohit  Sinha19-Jun-04 18:57 
GeneralRe: Passing multiple values Pin
palbano19-Jun-04 19:04
palbano19-Jun-04 19:04 
GeneralRe: Passing multiple values Pin
sivilian24-Jun-04 5:10
sivilian24-Jun-04 5:10 
GeneralURGENT! Problem migrating an ASP website onto Windows Server 2003 (Recordset Cursor/Bookmarks) Pin
Nathan Ridley18-Jun-04 17:28
Nathan Ridley18-Jun-04 17:28 
GeneralRe: URGENT! Problem migrating an ASP website onto Windows Server 2003 (Recordset Cursor/Bookmarks) Pin
Ph@ntom19-Jun-04 2:30
Ph@ntom19-Jun-04 2:30 
Questionwindow.open Search using QUOTES ?? Pin
ghoulardi17-Jun-04 17:11
ghoulardi17-Jun-04 17:11 
AnswerRe: window.open Search using QUOTES ?? Pin
palbano17-Jun-04 17:38
palbano17-Jun-04 17:38 
AnswerRe: window.open Search using QUOTES ?? Pin
palbano17-Jun-04 17:46
palbano17-Jun-04 17:46 
GeneralRe: window.open Search using QUOTES ?? Pin
Member 118301917-Jun-04 20:45
Member 118301917-Jun-04 20:45 
GeneralRe: window.open Search using QUOTES ?? Pin
Andrew Quinn AUS17-Jun-04 22:47
Andrew Quinn AUS17-Jun-04 22:47 
GeneralRe: window.open Search using QUOTES ?? Pin
Member 118301917-Jun-04 23:10
Member 118301917-Jun-04 23:10 
GeneralHelp with a update form Pin
DEWright_CA17-Jun-04 11:02
DEWright_CA17-Jun-04 11:02 
GeneralWSE 2.0 (SoapReceivers) Pin
Fernandes17-Jun-04 10:13
Fernandes17-Jun-04 10:13 
GeneralSetting focus on a java applet in a web browser Pin
curless.Tim17-Jun-04 8:49
curless.Tim17-Jun-04 8:49 
GeneralHTTP 500 - Internal server error Pin
Raybot16-Jun-04 21:32
Raybot16-Jun-04 21:32 
GeneralRe: HTTP 500 - Internal server error Pin
l a u r e n18-Jun-04 10:05
l a u r e n18-Jun-04 10:05 
GeneralRe: HTTP 500 - Internal server error Pin
Vasudevan Deepak Kumar18-Jun-04 21:46
Vasudevan Deepak Kumar18-Jun-04 21:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.