473,569 Members | 2,762 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

a very simple problem!

hi ...

When i click to the submit button, i want to insert value
from the a text box to the mysql db. But when i enter text
in the text box nothing happens on clickign the submit
button. can anyone help me with ..
i am goign crazy

pls see the code below:

<table><tr><t d bgcolor="SILVER ">
<BIG> <B> <FONT COLOR=blue>
WELCOME 'STUDENT_NAME'

TODAY IS <%=DATE()%></b></td><p></p></tr>
</table><p></p>
<input type = "text" size ="50" maxlength=90 name
= "txtStory"> <p></P>
<input type="button" value="DRAFT" name="draft"><p ></p>
<input type="button" value="SUBMIT" name="submit">

<%
Dim strStoryContent
DIM RSA
DIM QUERY1
DIM ConnString
DIM Conn

ConnString = "Driver={My SQL ODBC 3.51 Driver};"
ConnString = ConnString & "Port=3306; "
ConnString = ConnString & "DATABASE=t est; "
strStoryContent = Request.Form("t xtStory")

If(Request.quer ystring("Submit ")) <> "" then
response.write "come1" ....this doesnt get printed!!!!
If Request("txtSto ry") <> "" then
response.write "come2"
Set Conn = Server.CreateOb ject("ADODB.Con nection")
Conn.Open ConnString
set RSA = Server.CreateOb ject("ADODB.Rec ordset")
QUERY1 = "INSERT INTO student_content
(student_id,sto ry_id,status_st udent,story_ori ginal_story_wo
rd_count) VALUES
('1','100','dra ft','"&strStory Content&"',4)"
Set rsa = conn.Execute(QU ERY1)
End If
end if
%>
thanks a lot
Jul 19 '05 #1
9 1826
Where is <form></form> tags?

Suggest you *validate* your HTML first:
http://validator.w3.org

Cheers
Ken

"janet" <kn*******@hotm ail.com> wrote in message
news:0a******** *************** *****@phx.gbl.. .
: hi ...
:
: When i click to the submit button, i want to insert value
: from the a text box to the mysql db. But when i enter text
: in the text box nothing happens on clickign the submit
: button. can anyone help me with ..
: i am goign crazy
:
: pls see the code below:
:
: <table><tr><t d bgcolor="SILVER ">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"> <p></P>
: <input type="button" value="DRAFT" name="draft"><p ></p>
: <input type="button" value="SUBMIT" name="submit">
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=t est; "
: strStoryContent = Request.Form("t xtStory")
:
: If(Request.quer ystring("Submit ")) <> "" then
: response.write "come1" ....this doesnt get printed!!!!
: If Request("txtSto ry") <> "" then
: response.write "come2"
: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: Conn.Open ConnString
: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo
: rd_count) VALUES
: ('1','100','dra ft','"&strStory Content&"',4)"
: Set rsa = conn.Execute(QU ERY1)
: End If
: end if
: %>
: thanks a lot
Jul 19 '05 #2
hey hi ...

thanks a lot for such a quick response.

u r right i didnt put the form tag! silly on my part. i
made the following changes (see below) but still nothing
happens. I am newbie and maybe asking a silly question for
you to recheck. please see if u suggest something.

thanks a lot again

<form action="aftStSe lection.asp" method="post">
<table><tr><t d bgcolor="SILVER ">
<BIG> <B> <FONT COLOR=blue>
WELCOME 'STUDENT_NAME'

TODAY IS <%=DATE()%></b></td><p></p></tr>
</table><p></p>
<input type = "text" size ="50" maxlength=90 name
= "txtStory"> <p></P>
<input type="button" value="DRAFT" name="draft"><p ></p>
<input type="button" value="SUBMIT" name="submit">
</form>

<%
Dim strStoryContent
DIM RSA
DIM QUERY1
DIM ConnString
DIM Conn

ConnString = "Driver={My SQL ODBC 3.51 Driver};"
ConnString = ConnString & "Port=3306; "
ConnString = ConnString & "DATABASE=t est; "
strStoryContent = Request.Form("t xtStory")

If(Request.quer ystring("Submit ")) <> "" then
response.write "come1"
If Request("txtSto ry") <> "" then
response.write "come2"
Set Conn = Server.CreateOb ject("ADODB.Con nection")
Conn.Open ConnString
set RSA = Server.CreateOb ject("ADODB.Rec ordset")
QUERY1 = "INSERT INTO student_content
(student_id,sto ry_id,status_st udent,story_ori ginal_story_wo
rd_count) VALUES
('1','100','dra ft','"&strStory Content&"',4)"
Set rsa = conn.Execute(QU ERY1)
End If
end if
%>
-----Original Message-----
Where is <form></form> tags?

Suggest you *validate* your HTML first:
http://validator.w3.org

Cheers
Ken

"janet" <kn*******@hotm ail.com> wrote in message
news:0a******* *************** ******@phx.gbl. ..
: hi ...
:
: When i click to the submit button, i want to insert value: from the a text box to the mysql db. But when i enter text: in the text box nothing happens on clickign the submit
: button. can anyone help me with ..
: i am goign crazy
:
: pls see the code below:
:
: <table><tr><t d bgcolor="SILVER ">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"> <p></P>
: <input type="button" value="DRAFT" name="draft"><p ></p>
: <input type="button" value="SUBMIT" name="submit">
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=t est; "
: strStoryContent = Request.Form("t xtStory")
:
: If(Request.quer ystring("Submit ")) <> "" then
: response.write "come1" ....this doesnt get printed!!!!
: If Request("txtSto ry") <> "" then
: response.write "come2"
: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: Conn.Open ConnString
: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo: rd_count) VALUES
: ('1','100','dra ft','"&strStory Content&"',4)"
: Set rsa = conn.Execute(QU ERY1)
: End If
: end if
: %>
: thanks a lot
.

Jul 19 '05 #3
Change:

If Request.queryst ring("Submit") <> "" then

to

If Request.Form("S ubmit") <> "" then

Cheers
Ken

"janet" <kn*******@hotm ail.com> wrote in message
news:08******** *************** *****@phx.gbl.. .
: hey hi ...
:
: thanks a lot for such a quick response.
:
: u r right i didnt put the form tag! silly on my part. i
: made the following changes (see below) but still nothing
: happens. I am newbie and maybe asking a silly question for
: you to recheck. please see if u suggest something.
:
: thanks a lot again
:
: <form action="aftStSe lection.asp" method="post">
: <table><tr><t d bgcolor="SILVER ">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"> <p></P>
: <input type="button" value="DRAFT" name="draft"><p ></p>
: <input type="button" value="SUBMIT" name="submit">
: </form>
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=t est; "
: strStoryContent = Request.Form("t xtStory")
:
: If(Request.quer ystring("Submit ")) <> "" then
: response.write "come1"
: If Request("txtSto ry") <> "" then
: response.write "come2"
: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: Conn.Open ConnString
: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo
: rd_count) VALUES
: ('1','100','dra ft','"&strStory Content&"',4)"
: Set rsa = conn.Execute(QU ERY1)
: End If
: end if
: %>
:
:
:
: >-----Original Message-----
: >Where is <form></form> tags?
: >
: >Suggest you *validate* your HTML first:
: >http://validator.w3.org
: >
: >Cheers
: >Ken
: >
: >"janet" <kn*******@hotm ail.com> wrote in message
: >news:0a******* *************** ******@phx.gbl. ..
: >: hi ...
: >:
: >: When i click to the submit button, i want to insert
: value
: >: from the a text box to the mysql db. But when i enter
: text
: >: in the text box nothing happens on clickign the submit
: >: button. can anyone help me with ..
: >: i am goign crazy
: >:
: >: pls see the code below:
: >:
: >: <table><tr><t d bgcolor="SILVER ">
: >: <BIG> <B> <FONT COLOR=blue>
: >: WELCOME 'STUDENT_NAME'
: >:
: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: </table><p></p>
: >: <input type = "text" size ="50" maxlength=90 name
: >: = "txtStory"> <p></P>
: >: <input type="button" value="DRAFT" name="draft"><p ></p>
: >: <input type="button" value="SUBMIT" name="submit">
: >:
: >: <%
: >: Dim strStoryContent
: >: DIM RSA
: >: DIM QUERY1
: >: DIM ConnString
: >: DIM Conn
: >:
: >: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: >: ConnString = ConnString & "Port=3306; "
: >: ConnString = ConnString & "DATABASE=t est; "
: >: strStoryContent = Request.Form("t xtStory")
: >:
: >: If(Request.quer ystring("Submit ")) <> "" then
: >: response.write "come1" ....this doesnt get printed!!!!
: >: If Request("txtSto ry") <> "" then
: >: response.write "come2"
: >: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: >: Conn.Open ConnString
: >: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: >: QUERY1 = "INSERT INTO student_content
: >:
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo
: >: rd_count) VALUES
: >: ('1','100','dra ft','"&strStory Content&"',4)"
: >: Set rsa = conn.Execute(QU ERY1)
: >: End If
: >: end if
: >: %>
: >: thanks a lot
: >
: >
: >.
: >
Jul 19 '05 #4
hey thanks ken for at least posting in some options.

i had already tried this thing before. I feel i am doign
some very silly mistake.

its still doesnt work!
-----Original Message-----
Change:

If Request.queryst ring("Submit") <> "" then

to

If Request.Form("S ubmit") <> "" then

Cheers
Ken

"janet" <kn*******@hotm ail.com> wrote in message
news:08******* *************** ******@phx.gbl. ..
: hey hi ...
:
: thanks a lot for such a quick response.
:
: u r right i didnt put the form tag! silly on my part. i
: made the following changes (see below) but still nothing
: happens. I am newbie and maybe asking a silly question for: you to recheck. please see if u suggest something.
:
: thanks a lot again
:
: <form action="aftStSe lection.asp" method="post">
: <table><tr><t d bgcolor="SILVER ">
: <BIG> <B> <FONT COLOR=blue>
: WELCOME 'STUDENT_NAME'
:
: TODAY IS <%=DATE()%></b></td><p></p></tr>
: </table><p></p>
: <input type = "text" size ="50" maxlength=90 name
: = "txtStory"> <p></P>
: <input type="button" value="DRAFT" name="draft"><p ></p>
: <input type="button" value="SUBMIT" name="submit">
: </form>
:
: <%
: Dim strStoryContent
: DIM RSA
: DIM QUERY1
: DIM ConnString
: DIM Conn
:
: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: ConnString = ConnString & "Port=3306; "
: ConnString = ConnString & "DATABASE=t est; "
: strStoryContent = Request.Form("t xtStory")
:
: If(Request.quer ystring("Submit ")) <> "" then
: response.write "come1"
: If Request("txtSto ry") <> "" then
: response.write "come2"
: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: Conn.Open ConnString
: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: QUERY1 = "INSERT INTO student_content
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo: rd_count) VALUES
: ('1','100','dra ft','"&strStory Content&"',4)"
: Set rsa = conn.Execute(QU ERY1)
: End If
: end if
: %>
:
:
:
: >-----Original Message-----
: >Where is <form></form> tags?
: >
: >Suggest you *validate* your HTML first:
: >http://validator.w3.org
: >
: >Cheers
: >Ken
: >
: >"janet" <kn*******@hotm ail.com> wrote in message
: >news:0a******* *************** ******@phx.gbl. ..
: >: hi ...
: >:
: >: When i click to the submit button, i want to insert
: value
: >: from the a text box to the mysql db. But when i enter
: text
: >: in the text box nothing happens on clickign the submit: >: button. can anyone help me with ..
: >: i am goign crazy
: >:
: >: pls see the code below:
: >:
: >: <table><tr><t d bgcolor="SILVER ">
: >: <BIG> <B> <FONT COLOR=blue>
: >: WELCOME 'STUDENT_NAME'
: >:
: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: </table><p></p>
: >: <input type = "text" size ="50" maxlength=90 name
: >: = "txtStory"> <p></P>
: >: <input type="button" value="DRAFT" name="draft"><p ></p>: >: <input type="button" value="SUBMIT" name="submit">
: >:
: >: <%
: >: Dim strStoryContent
: >: DIM RSA
: >: DIM QUERY1
: >: DIM ConnString
: >: DIM Conn
: >:
: >: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: >: ConnString = ConnString & "Port=3306; "
: >: ConnString = ConnString & "DATABASE=t est; "
: >: strStoryContent = Request.Form("t xtStory")
: >:
: >: If(Request.quer ystring("Submit ")) <> "" then
: >: response.write "come1" ....this doesnt get printed!!!!: >: If Request("txtSto ry") <> "" then
: >: response.write "come2"
: >: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: >: Conn.Open ConnString
: >: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: >: QUERY1 = "INSERT INTO student_content
: >:
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo: >: rd_count) VALUES
: >: ('1','100','dra ft','"&strStory Content&"',4)"
: >: Set rsa = conn.Execute(QU ERY1)
: >: End If
: >: end if
: >: %>
: >: thanks a lot
: >
: >
: >.
: >
.

Jul 19 '05 #5
Can you add this:

<%
If Request.Form("S ubmit") <> "" then
' your existing stuff here
Else
Response.Write( "Submit is a zero length string")
End If
%>

and tell us what you see on the screen?

(When you say: "You tried this before, and it didn't work" - it didn't work
before because you had no <form></form> tags right?)

Cheers
Ken
"janet" <kn*******@hotm ail.com> wrote in message
news:0b******** *************** *****@phx.gbl.. .
: hey thanks ken for at least posting in some options.
:
: i had already tried this thing before. I feel i am doign
: some very silly mistake.
:
: its still doesnt work!
:
: >-----Original Message-----
: >Change:
: >
: >If Request.queryst ring("Submit") <> "" then
: >
: >to
: >
: >If Request.Form("S ubmit") <> "" then
: >
: >Cheers
: >Ken
: >
: >"janet" <kn*******@hotm ail.com> wrote in message
: >news:08******* *************** ******@phx.gbl. ..
: >: hey hi ...
: >:
: >: thanks a lot for such a quick response.
: >:
: >: u r right i didnt put the form tag! silly on my part. i
: >: made the following changes (see below) but still nothing
: >: happens. I am newbie and maybe asking a silly question
: for
: >: you to recheck. please see if u suggest something.
: >:
: >: thanks a lot again
: >:
: >: <form action="aftStSe lection.asp" method="post">
: >: <table><tr><t d bgcolor="SILVER ">
: >: <BIG> <B> <FONT COLOR=blue>
: >: WELCOME 'STUDENT_NAME'
: >:
: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: </table><p></p>
: >: <input type = "text" size ="50" maxlength=90 name
: >: = "txtStory"> <p></P>
: >: <input type="button" value="DRAFT" name="draft"><p ></p>
: >: <input type="button" value="SUBMIT" name="submit">
: >: </form>
: >:
: >: <%
: >: Dim strStoryContent
: >: DIM RSA
: >: DIM QUERY1
: >: DIM ConnString
: >: DIM Conn
: >:
: >: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: >: ConnString = ConnString & "Port=3306; "
: >: ConnString = ConnString & "DATABASE=t est; "
: >: strStoryContent = Request.Form("t xtStory")
: >:
: >: If(Request.quer ystring("Submit ")) <> "" then
: >: response.write "come1"
: >: If Request("txtSto ry") <> "" then
: >: response.write "come2"
: >: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: >: Conn.Open ConnString
: >: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: >: QUERY1 = "INSERT INTO student_content
: >:
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo
: >: rd_count) VALUES
: >: ('1','100','dra ft','"&strStory Content&"',4)"
: >: Set rsa = conn.Execute(QU ERY1)
: >: End If
: >: end if
: >: %>
: >:
: >:
: >:
: >: >-----Original Message-----
: >: >Where is <form></form> tags?
: >: >
: >: >Suggest you *validate* your HTML first:
: >: >http://validator.w3.org
: >: >
: >: >Cheers
: >: >Ken
: >: >
: >: >"janet" <kn*******@hotm ail.com> wrote in message
: >: >news:0a******* *************** ******@phx.gbl. ..
: >: >: hi ...
: >: >:
: >: >: When i click to the submit button, i want to insert
: >: value
: >: >: from the a text box to the mysql db. But when i enter
: >: text
: >: >: in the text box nothing happens on clickign the
: submit
: >: >: button. can anyone help me with ..
: >: >: i am goign crazy
: >: >:
: >: >: pls see the code below:
: >: >:
: >: >: <table><tr><t d bgcolor="SILVER ">
: >: >: <BIG> <B> <FONT COLOR=blue>
: >: >: WELCOME 'STUDENT_NAME'
: >: >:
: >: >: TODAY IS <%=DATE()%></b></td><p></p></tr>
: >: >: </table><p></p>
: >: >: <input type = "text" size ="50" maxlength=90 name
: >: >: = "txtStory"> <p></P>
: >: >: <input type="button" value="DRAFT"
: name="draft"><p ></p>
: >: >: <input type="button" value="SUBMIT" name="submit">
: >: >:
: >: >: <%
: >: >: Dim strStoryContent
: >: >: DIM RSA
: >: >: DIM QUERY1
: >: >: DIM ConnString
: >: >: DIM Conn
: >: >:
: >: >: ConnString = "Driver={My SQL ODBC 3.51 Driver};"
: >: >: ConnString = ConnString & "Port=3306; "
: >: >: ConnString = ConnString & "DATABASE=t est; "
: >: >: strStoryContent = Request.Form("t xtStory")
: >: >:
: >: >: If(Request.quer ystring("Submit ")) <> "" then
: >: >: response.write "come1" ....this doesnt get
: printed!!!!
: >: >: If Request("txtSto ry") <> "" then
: >: >: response.write "come2"
: >: >: Set Conn = Server.CreateOb ject("ADODB.Con nection")
: >: >: Conn.Open ConnString
: >: >: set RSA = Server.CreateOb ject("ADODB.Rec ordset")
: >: >: QUERY1 = "INSERT INTO student_content
: >: >:
: >:
: (student_id,sto ry_id,status_st udent,story_ori ginal_story_wo
: >: >: rd_count) VALUES
: >: >: ('1','100','dra ft','"&strStory Content&"',4)"
: >: >: Set rsa = conn.Execute(QU ERY1)
: >: >: End If
: >: >: end if
: >: >: %>
: >: >: thanks a lot
: >: >
: >: >
: >: >.
: >: >
: >
: >
: >.
: >
Jul 19 '05 #6
Change:

<input type="button" value="SUBMIT" name="submit">

to

<input type="submit" value="submit">

You have two normal buttons, either of which is submitting the form.

Cheers
Ken
--
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~
"janet" <kn*******@hotm ail.com> wrote in message
news:0b******** *************** *****@phx.gbl.. .
: yes ...it is goign to the else part???but why is this
: happening?????? ??????????
: >-----Original Message-----
: >Can you add this:
: >
: ><%
: >If Request.Form("S ubmit") <> "" then
: > ' your existing stuff here
: >Else
: > Response.Write( "Submit is a zero length string")
: >End If
: >%>
: >
: >and tell us what you see on the screen?
: >
: >(When you say: "You tried this before, and it didn't
: work" - it didn't work
: >before because you had no <form></form> tags right?)
: >
: >Cheers
: >Ken
Jul 19 '05 #7
thanks ken ... no progress..i have now divided the code
into 2 pages. let me post a fresh query to have fresh
feedback....its sickening !!!!!!!!!!

thanks
-----Original Message-----
Change:

<input type="button" value="SUBMIT" name="submit">

to

<input type="submit" value="submit">

You have two normal buttons, either of which is submitting the form.
Cheers
Ken
--
~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~
"janet" <kn*******@hotm ail.com> wrote in message
news:0b******* *************** ******@phx.gbl. ..
: yes ...it is goign to the else part???but why is this
: happening?????? ??????????
: >-----Original Message-----
: >Can you add this:
: >
: ><%
: >If Request.Form("S ubmit") <> "" then
: > ' your existing stuff here
: >Else
: > Response.Write( "Submit is a zero length string")
: >End If
: >%>
: >
: >and tell us what you see on the screen?
: >
: >(When you say: "You tried this before, and it didn't
: work" - it didn't work
: >before because you had no <form></form> tags right?)
: >
: >Cheers
: >Ken
.

Jul 19 '05 #8
In article <O3************ **@TK2MSFTNGP09 .phx.gbl>,
ke*******@THISa dOpenStatic.com says...
Change:

If Request.queryst ring("Submit") <> "" then

to

If Request.Form("S ubmit") <> "" then


Would someone remind me again what is evil about "Request("Submi t")"?

-- Rick

Jul 19 '05 #9
"Guinness Mann" <GM***@dublin.c om> wrote in message
news:MP******** *************** *@news.newsguy. com...
In article <O3************ **@TK2MSFTNGP09 .phx.gbl>,
ke*******@THISa dOpenStatic.com says...
Change:

If Request.queryst ring("Submit") <> "" then

to

If Request.Form("S ubmit") <> "" then


Would someone remind me again what is evil about "Request("Submi t")"?

-- Rick

http://www.aspfaq.com/show.asp?id=2111
Jul 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3669
by: Patchwork | last post by:
Hi Everyone, Please take a look at the following (simple and fun) program: //////////////////////////////////////////////////////////////////////////// ///////////// // Monster Munch, example program #include <list>
6
2137
by: francisco lopez | last post by:
ok , first of all sorry if my english is not so good, I do my best. here is my problem: I don´t know much javascript so I wrote a very simple one to validate a form I have on my webpage. could you please have a look at the following script: ------------------------------------------------------------
0
1874
by: 42 | last post by:
I implemented a simple class inherited from Page to create a page template. It simply wraps some trivial html around the inherited page, and puts the inherited page into a form. The problem I have run into is that the emitted html at the end of the process is slightly different and doesn't work. Please don't be put off by all the source...
18
1494
by: Sender | last post by:
Yesterday there was a very long thread on this query. (You can search on this by post by 'sender' with subject 'Simple Problem' post date Oct 7 time 1:43p) And in the end the following code was decided to open a new form: ---Code in the click event of a button: button1 if frm is nothing then frm = new form2() frm.show
27
4595
by: one man army | last post by:
Hi All- I am new to PHP. I found FAQTS and the php manual. I am trying this sequence, but getting 'no zip string found:'... PHP Version 4.4.0 $doc = new DomDocument; $res = $doc->loadHTMLFile("./aBasicSearchResult.html"); if ( $res == true ) { $zip = $doc->getElementById('zipRaw_id')->value; if ( 0 != $zip ) {
2
5174
by: Vitali Gontsharuk | last post by:
Hi! I have a problem programming a simple client-server game, which is called pingpong ;-) The final program will first be started as a server (nr. 2) and then as a client. The client then sends the message "Ping" to the server, which reads it and answers with a "Pong". The game is really simple and the coding should be also very simple!...
8
3535
by: rdrink | last post by:
I am just getting into pysqlite (with a fair amount of Python and MySQL experience behind me) and have coded a simple test case to try to get the hang of things... yet have run into a 'stock simple' problem... I can create a database 'test.db', add a table 'foo' (which BTW I repeatedly DROP on each run) with one INTGER column 'id', and can...
5
1876
by: Chelong | last post by:
hey,the follow is the text file content ========================================apple====pear== one Lily 7 0 0 7 7 two Lily 20 20 6.6666 20 8 one Lily 0 10 2.85 4 0 two Lily 22 22 7.33326 2 5 two jenny 6 0 0 6 6 two jenny 12 0 0 12 12 three jenny 36 36 10.26 36 36
30
3483
by: galiorenye | last post by:
Hi, Given this code: A** ppA = new A*; A *pA = NULL; for(int i = 0; i < 10; ++i) { pA = ppA; //do something with pA
0
7694
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7609
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7666
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7964
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6278
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5504
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5217
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3651
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1208
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.