Hi
I have TextBox as a search box and Image Map as a button
<asp:TextBox ID="txtSearch" runat="server"></asp:TextBox>
<img src="images/compleate.gif" width=859 height=120 border=0 alt="" usemap="#compleate_map"/>
<map name="compleate_map">
<area shape="rect" alt="" coords="784, 72, 829, 106" href="Search.aspx"/>
</map>
I want to do this code when clicking on image map
If txtSearch.Text <> "" Then
Response.Redirect("Search.aspx?q=" & txtSearch.Text)
End If
Thank you very much
.
Go to the complete details ...