[newbie] Controls have to be aligned
-
I would like to align controls within a form so that forms appear within a table. Basically I have a form that needs to show, say: Label Textbox Name Address The 'textbox' in this case need to be aligned under each other. The problem with using (within tags was that the code was not compiling within Visual Studio 2005, since it does not comply with the markup validations. XHTML 1.0 Transitional Any more ideas, please?
Jon
-
I would like to align controls within a form so that forms appear within a table. Basically I have a form that needs to show, say: Label Textbox Name Address The 'textbox' in this case need to be aligned under each other. The problem with using (within tags was that the code was not compiling within Visual Studio 2005, since it does not comply with the markup validations. XHTML 1.0 Transitional Any more ideas, please?
Jon
You can use the literals to write non-alpha characters. For example, "& a m p;" (without spaces) renders "&" on a page. That'll pass xhtml validation.
-
You can use the literals to write non-alpha characters. For example, "& a m p;" (without spaces) renders "&" on a page. That'll pass xhtml validation.
-
I would like to align controls within a form so that forms appear within a table. Basically I have a form that needs to show, say: Label Textbox Name Address The 'textbox' in this case need to be aligned under each other. The problem with using (within tags was that the code was not compiling within Visual Studio 2005, since it does not comply with the markup validations. XHTML 1.0 Transitional Any more ideas, please?
Jon
to align controls use css property.
-
to align controls use css property.
I could use it to align text, however, I would like to make sure that they fit within a , and, somehow the
tags have rendered the page unreadable. I tried with a smaller version and it worked, so I must have done some mistake in my actual form. However when I tried to include controls within a wizard control within
tags it doesn't compile. Any workarounds?
]]> onfinishbuttonclick="Wizard1_FinishButtonClick" Width="765px"> Choose Step 2a Step 2b
Error: Error 1 System.Web.UI.WebControls.WizardStepCollection must have items of type 'System.Web.UI.WebControls.WizardStepBase'. 'table' is of type 'System.Web.UI.HtmlControls.HtmlTable'. c:\inetpub\wwwroot\WebSite2\Default.aspx 16Jon
modified on Sunday, January 18, 2009 2:36 PM