Absolute position

S

SolFrankRosen

I'm trying to make a button on my form be in a fixed position, I used:

<asp:Button ID="butCancel" style="position:absolute"; runat="server"
Text="Cancel" />

but I get an error that this "is not well formed"

also is there a way in Visual Web Developer to have ALL new buttons,
textboxes, etc. default to "absolute position"?

Thanks! Sol
 
T

Tom Shelton

I'm trying to make a button on my form be in a fixed position, I used:

<asp:Button ID="butCancel" style="position:absolute"; runat="server"
Text="Cancel" />

but I get an error that this "is not well formed"

also is there a way in Visual Web Developer to have ALL new buttons,
textboxes, etc. default to "absolute position"?

Thanks! Sol

your semicolon is outside of your ". as for second... I would assume
you could just set a global style in your css.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top