I have an asp page where I have two radio buttons and next to each button there is a list box with default selection so that user can sort by as per the selection.
I also have reset and submit button.
My page works well. Now the user says that I do not like the List box and also do not want to see submit button unless I select the radio option.
User wants me to create in such a way that once user selects the radio button, it should refresh page and show four new radio buttons down on the page which has the same option as in list box and also show submit button.
The user will now select the sort by option from here.
I have never done this kind before. Any suggestions or help will be appreciated.
My code now looks like:
<%@ LANGUAGE="VBScript" %>
<!--#include virtual="/common/DSFRemoteUI/DSF_RemoteUI_inc.asp" -->
<html>
<div align="right"><a href="LPM_Default.asp">back to Real Estate System Main page </a></div>
<h3 align="center">Real Estate Payment Reports </h3>
<form name="RE_Report" method="post" action="LPM_Report_Common.asp" target = "_blank" >
<table width="98%" border="1" align="center" >
<tr>
<td>
<input name="re" type="radio" value="TimeLine02187.rpt">
Generate Real Estate Service Payment Report </td>
<td><select name="select1">
<option value="costCenter" selected>group by cost center</option>
<option value="serviceType">group by service type</option>
<option value="vendorName">group by vendor Name</option>
<option value="vendorNumber">group by vendor Number</option>
</select></td>
</tr>
<tr>
<td><input name="re" type="radio" value="TimeLine02187.rpt">Generate Real Estate Rent Payment Report </td>
<td><select name="select2">
<option value="costCenter" selected>sort by cost center</option>
<option value="vendorNumber">sort by vendor number</option>
<option value="vendorName">sort by vendor name</option>
<option value="leaseTodate">sort by lease to date</option>
</select></td>
</tr></table>
<p> </p>
<p> </p>
<p> </p>
<p align="center">
<input type="reset" name="Reset" value="Reset">
<input type="submit" name="Submit" value="Submit">
</p>
<p> </p>
</form>
</html>
The user does not want list box and submit button. Only when he selects radio option then it should show another 4 radio options as shown in the list box and also submit button. This can be done only one refreshes the page. Any help will be appreciated.
Thanks, Nelco
I also have reset and submit button.
My page works well. Now the user says that I do not like the List box and also do not want to see submit button unless I select the radio option.
User wants me to create in such a way that once user selects the radio button, it should refresh page and show four new radio buttons down on the page which has the same option as in list box and also show submit button.
The user will now select the sort by option from here.
I have never done this kind before. Any suggestions or help will be appreciated.
My code now looks like:
<%@ LANGUAGE="VBScript" %>
<!--#include virtual="/common/DSFRemoteUI/DSF_RemoteUI_inc.asp" -->
<html>
<div align="right"><a href="LPM_Default.asp">back to Real Estate System Main page </a></div>
<h3 align="center">Real Estate Payment Reports </h3>
<form name="RE_Report" method="post" action="LPM_Report_Common.asp" target = "_blank" >
<table width="98%" border="1" align="center" >
<tr>
<td>
<input name="re" type="radio" value="TimeLine02187.rpt">
Generate Real Estate Service Payment Report </td>
<td><select name="select1">
<option value="costCenter" selected>group by cost center</option>
<option value="serviceType">group by service type</option>
<option value="vendorName">group by vendor Name</option>
<option value="vendorNumber">group by vendor Number</option>
</select></td>
</tr>
<tr>
<td><input name="re" type="radio" value="TimeLine02187.rpt">Generate Real Estate Rent Payment Report </td>
<td><select name="select2">
<option value="costCenter" selected>sort by cost center</option>
<option value="vendorNumber">sort by vendor number</option>
<option value="vendorName">sort by vendor name</option>
<option value="leaseTodate">sort by lease to date</option>
</select></td>
</tr></table>
<p> </p>
<p> </p>
<p> </p>
<p align="center">
<input type="reset" name="Reset" value="Reset">
<input type="submit" name="Submit" value="Submit">
</p>
<p> </p>
</form>
</html>
The user does not want list box and submit button. Only when he selects radio option then it should show another 4 radio options as shown in the list box and also submit button. This can be done only one refreshes the page. Any help will be appreciated.
Thanks, Nelco