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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.