Question Hoe do i enable a radio button in the webbrowser?

NatePro

Member
Joined
Jan 18, 2009
Messages
10
Programming Experience
1-3
I have three radioboxes in my form, when i click on one on them it shall change a language in the webbrowser.

Here is the HTML code:
VB.NET:
<input type="radio" value="Engelsk" name="spraak" checked="checked" style="font-family: arial;"/>
<span style="font-family: arial;">From English </span>
<br style="font-family: arial;"/>
<input type="radio" value="Spansk" name="spraak" style="font-family: arial;"/>
<span style="font-family: arial;">From Spanish </span>
<br style="font-family: arial;"/>
<input type="radio" value="Norsk" name="spraak" style="font-family: arial;"/>
<span style="font-family: arial;">From Norwegian</span>

Need anymore info?
 
Back
Top