I have a label named “Street Name” with text box as “txtStreetName” with the following radio buttons "Exact", "Starts With", "Contains", "Sounds Like" and the button for Searching Street.
When I type the name of the street name in the textbox = “red” I select checked radio button “Starts With” later I clicked the search button and the data results will display: red, redwood, Redstreet, etc…
See the code below:
<asp:Label
ID="LblStreetName"
runat="server"
Text="Street Name: "/>
</asp:Label>
<asp:TextBox
ID="txtStreetName"
runat="server" >
</asp:TextBox>
<asp:RadioButton
id="rbExact"
Text="Exact"
Checked="True"
GroupName="SearchType"
runat="server"
AutoPostBack ="true"/>
&nbs ...
Go to the complete details ...