Why?

Reply

Join Date: May 2005
Posts: 29
Reputation: vhinehds is an unknown quantity at this point 
Solved Threads: 0
vhinehds's Avatar
vhinehds vhinehds is offline Offline
Light Poster

Why?

 
0
  #1
Jun 11th, 2005
i have this problem some couple of days back...and honestly im just new to ASP so to some maybe my problem is not that big...here it is:

im practicing making a web site using ASP and i have on my html two buttons, and inline with that i also used <form> tags for the two buttons. now my question is...why is it that the two buttons are one button apart from each other. what i want is to put them closer...what will i do?

another...can anybody here give me an example how to use javascript in buttons, vbscript will do. thanks a lot guys.


by the way, the two buttons results will have to be displayed in the same form and has to be inside a table...please help me. thanks again.
Reply With Quote Quick reply to this message  
Join Date: Aug 2004
Posts: 18
Reputation: afgmail is an unknown quantity at this point 
Solved Threads: 0
afgmail's Avatar
afgmail afgmail is offline Offline
Newbie Poster

Re: Why?

 
0
  #2
Jun 15th, 2005
Can you post some code?
Reply With Quote Quick reply to this message  
Join Date: May 2005
Posts: 29
Reputation: vhinehds is an unknown quantity at this point 
Solved Threads: 0
vhinehds's Avatar
vhinehds vhinehds is offline Offline
Light Poster

Re: Why?

 
0
  #3
Jun 15th, 2005
Originally Posted by afgmail
Can you post some code?
yeah...sure, here's the code:


<table border='0' width='80%'>
<tr>
<td align='top'>
<form name="form1" action = "twoforms.asp" method="get">
<input type="hidden" name="num_student" value="1">
<input type="submit" value="Boys School" id=submit1 name='BoysSchool'>
</form>
<form name="form2" action = "twoforms.asp" method="get">
<input type="hidden" name="num_subjects" value="2">
<input type="submit" value="Girls Schools" id=submit2 name=submit2>
</form>
<form name="form3" action = "twoforms.asp" method="get">
<input type="hidden" name="num_teacher" value="1">
<input type="submit" value="num_teacher" id=submit3 name=submit3>
</form>

</td>
</tr>
</table>
Reply With Quote Quick reply to this message  
Join Date: Jan 2005
Posts: 294
Reputation: zippee is an unknown quantity at this point 
Solved Threads: 6
zippee's Avatar
zippee zippee is offline Offline
Posting Whiz in Training

Re: Why?

 
0
  #4
Jun 15th, 2005
It would be better to use just one form and use drop-down list or radio to identify data. Fopr example:
  1. <form action="" method="post">
  2. <type="radio" value="Boys School" name="action">
  3. <type="radio" value="Girls Schools" name="action">
  4. <type="radio" value="num_teacher" name="action">
  5. <type="submit" value="Submit">
  6. </form>
  7. <%
  8. if len(Request("action"))>0 then
  9. QueryAction = Request("action")
  10. if QueryAction = "Boys School" then
  11. ' do something
  12. end if
  13. ' continue with the remaining
  14. if...
  15. end if
  16. %>
Ecommerce-Web-Store.com Building Your e-Business.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the ASP Forum
Thread Tools Search this Thread



Tag cloud for ASP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC