|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Requested Variable is Empty
cellnumber and cellprovider variables are empty. Here is the code that generates my error: If request("txtmsg") = "true" then If request("cellprovider") = "0" or trim(request("cellnumber")) = "" then response.write("If user wants to be text messaged you must enter a cell provider and cell number for the user. Click the back button to re-enter.") end if end if --The problem is that the txtmsg variable has no value when I do a response.write for debugging. Here is the code from the form that passes the variable: <input name="txtmsg" type="checkbox" id="txtmsg" value="<%if request("txtmsg") = "true" then response.write("true") else response.write("false")%>" <%if Lcase(request.querystring("txtmsg")) = "true" then response.write("checked")%>> Yes, I want to recieve a text message on my cell phone when I recieve a fax.<br> I'm sorry, here is the code from that form that posts the txtmsg variable
(see below): <input name="txtmsg" type="checkbox" id="txtmsg" value="true" <%if Lcase(request.querystring("txtmsg")) = "true" then response.write("checked")%>> Show quote "Erica" wrote: > I am trying to display an error if the txtmsg variable is true and the > cellnumber and cellprovider variables are empty. Here is the code that > generates my error: > > If request("txtmsg") = "true" then > If request("cellprovider") = "0" or trim(request("cellnumber")) = "" then > response.write("If user wants to be text messaged you must enter a cell > provider and cell number for the user. Click the back button to re-enter.") > end if > end if > > --The problem is that the txtmsg variable has no value when I do a > response.write for debugging. Here is the code from the form that passes the > variable: > > > <input name="txtmsg" type="checkbox" id="txtmsg" value="<%if > request("txtmsg") = "true" then response.write("true") else > response.write("false")%>" <%if Lcase(request.querystring("txtmsg")) = "true" > then response.write("checked")%>> > Yes, I want to recieve a text message on my cell phone when I > recieve a fax.<br> > =?Utf-8?B?RXJpY2E=?= wrote on 28 feb 2005 in
microsoft.public.inetserver.asp.general: > I'm sorry, here is the code from that form that posts the txtmsg [please do not toppost on usenet]> variable (see below): > > <input name="txtmsg" type="checkbox" id="txtmsg" value="true" <%if > Lcase(request.querystring("txtmsg")) = "true" then > response.write("checked")%>> > The lcase is not necessary, since it is lowercase anyway. try this, works fine overhere: <% if request.querystring("txtmsg") = "on" then ch = "checked" else ch = "" end if %> <form method="get"> <input name="txtmsg" type="checkbox" <%=ch%> > <input type=submit> </form> -- Evertjan. The Netherlands. (Replace all crosses with dots in my emailaddress) Try doing a "view source" on the html that the page generates.
Show quote "Erica" <Er***@discussions.microsoft.com> wrote in message news:DB252EDB-0C24-4B31-90B4-A489C65397A9@microsoft.com... > I am trying to display an error if the txtmsg variable is true and the > cellnumber and cellprovider variables are empty. Here is the code that > generates my error: > > If request("txtmsg") = "true" then > If request("cellprovider") = "0" or trim(request("cellnumber")) = "" then > response.write("If user wants to be text messaged you must enter a cell > provider and cell number for the user. Click the back button to re-enter.") > end if > end if > > --The problem is that the txtmsg variable has no value when I do a > response.write for debugging. Here is the code from the form that passes the > variable: > > > <input name="txtmsg" type="checkbox" id="txtmsg" value="<%if > request("txtmsg") = "true" then response.write("true") else > response.write("false")%>" <%if Lcase(request.querystring("txtmsg")) = "true" > then response.write("checked")%>> > Yes, I want to recieve a text message on my cell phone when I > recieve a fax.<br> > |
|||||||||||||||||||||||