I know there must be a simple answer I’m overlooking here . . . I have an ASP.NET application and I’m using an HTML template I bought. The template has CSS definitions for buttons like (note there is no class defined)
<button type="submit">
But I’m using ASP.NET buttons which render like
<input type="submit">
How can I make it so that the two buttons render in the same way? I need the input tag to have the same formatting as the button tag
Not too trivial, but there’s a way to do it (Article Here)
Basically, you need to implement a control adapter and get a .browser file to have your application render it that way. Take a look on the article.