Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

put the controls to the palce I want 1

Status
Not open for further replies.

jslmvl

Vendor
Joined
Jan 26, 2008
Messages
268
Location
GB
Hi,

Just start to learn ASP.NET(C#)!

I tried to double click a control in the tool box and the control did appeare in the form. However, after that, I couldn't drag it to elsewhere. So, can you tell me how to put the controls to the palce I want?

Thank you in advance.
 
The designer will not show you where the control will be when the page is rendered. You should use CSS to position your controls, then run the page to see how it looks when rendered.
 
Thank you.

Can you show me a most simple example for use CSS to position controls?
Or, do you think I can write <Table><tr><td>....</td></tr></table> around the control tags after puting controls in the designer?
 
You can also use a table to position controls, which works fine for tabular data. However, you should learn CSS for styling your pages.
 
What I know about CSS is to set font, color .... but don't know how to organise the positions of elements in the page.
 
There are plenty of refernces on line. Google CSS positioning
 
OK, I will.

At the moment, I need to do the most basic thing:
Where, in which file, I can put <Table><tr><td>?
 
That goes in the html markup of the page.
Yourpage.aspx
 
Yes....Thanks a lot for your help!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top