Absolute position

  • Thread starter Thread starter SolFrankRosen
  • Start date Start date
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
 
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.
 
Back
Top