michaelcoleman
Programmer
An Exerpt of my code looks like:
<form action="Exec.asp?prj=webSPC&cls=Report" method="post" >
TesterType:
<select name="testertype" onChange="location='Exec.asp?prj=webSPC&cls=View2'" >
<option value=Chassis>Chassis</option><option value=RCVR_BDC>RCVR_BDC</option>
</select>
<p>
When someone makes a selection of the option box, I would like to send the data to "Exec.asp?prj=webSPC&cls=View2" which happens to be the same page. (Using some ASP to talk to some VB code)
The problem is that this code only refreshes what's already there and doesn't seem to post the changed data. I've seen this done on websites, can't figure out how to do it.
Please Help
MJC
<form action="Exec.asp?prj=webSPC&cls=Report" method="post" >
TesterType:
<select name="testertype" onChange="location='Exec.asp?prj=webSPC&cls=View2'" >
<option value=Chassis>Chassis</option><option value=RCVR_BDC>RCVR_BDC</option>
</select>
<p>
When someone makes a selection of the option box, I would like to send the data to "Exec.asp?prj=webSPC&cls=View2" which happens to be the same page. (Using some ASP to talk to some VB code)
The problem is that this code only refreshes what's already there and doesn't seem to post the changed data. I've seen this done on websites, can't figure out how to do it.
Please Help
MJC