|
|
|
|
|
| | |
|
Active Server Pages ASP ASP.NET .aspx .ascx Web HTML Developer Internet Microsoft Web Services Visual Studio .NET CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Radio buttons |
From: |
Shailesh Lolam |
Date: |
4/26/2000 1:51:38 AM |
IP: |
203.94.239.119 |
Hello there,
Check the value of the radio button you wil under stand which one is selected.
EXAMPLE
<form method=POST action=somewhere>
<input type=radio name=urfield value="first" checked>
<input type=radio name=urfield value="second>
<!-- other form fields-->
...
..
</form>
and at the Server side use following code
<% myselection = Request.Form("urfield")%>
depending on the users selection you will get either "first" or "second" as the field value
Feel free to ask if any further queries.
GOOD LUCK
Shailesh Lolam
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|