Does anyone know a way to make an asp button...
<asp:button runat="server">Button1</asp:button>
resemble an HTML input button...
<input type="button" value="Button2"/>
(or vice versa) in Visual Studio 2003?
Does anyone know a way to make an asp button...
<asp:button runat="server">Button1</asp:button>
resemble an HTML input button...
<input type="button" value="Button2"/>
(or vice versa) in Visual Studio 2003?
I think you'll need to modify your CSS. Here is something that may help get you going;
Then update your markup to look something like this;
<%= Html.ActionLink("Cancel", "QuoteList", "Quote", new { @class = "button" })%>
This is just off the top of my head so I hope that helps.