Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie button question

Status
Not open for further replies.

bigracefan

Programmer
Apr 2, 2002
304
US
I've inherited a asp.net page and I need to change the current buttons (which are images) to buttons that are controled by a style sheet.

Here is what is currently used:
Code:
<asp:imagebutton id="btnLookup" Runat="server" ImageUrl="../Agents/lookupbutton.JPG">

This is what I'm using on my classic pages:
Code:
<input type="button" value="Insert" class="button01" onClick="javascript:window.location='../../frmRating2.asp?PolicyID=Insert';" onMouseOver="this.className='button01h'" onMouseOut="this.className='button01'">
Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top