Click here to Skip to main content
15,902,189 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: access database Pin
Kannan Ar2-Oct-09 0:45
professionalKannan Ar2-Oct-09 0:45 
QuestionClick Once type of Installation Pin
Vimalsoft(Pty) Ltd1-Oct-09 23:05
professionalVimalsoft(Pty) Ltd1-Oct-09 23:05 
AnswerRe: Click Once type of Installation Pin
Christian Graus1-Oct-09 23:18
protectorChristian Graus1-Oct-09 23:18 
GeneralRe: Click Once type of Installation Pin
Vimalsoft(Pty) Ltd1-Oct-09 23:20
professionalVimalsoft(Pty) Ltd1-Oct-09 23:20 
QuestionAbout the control positioning in asp.net Pin
Abhishek Rana1-Oct-09 21:25
Abhishek Rana1-Oct-09 21:25 
AnswerRe: About the control positioning in asp.net Pin
Christian Graus1-Oct-09 21:29
protectorChristian Graus1-Oct-09 21:29 
AnswerRe: About the control positioning in asp.net Pin
mr_muskurahat1-Oct-09 23:06
mr_muskurahat1-Oct-09 23:06 
AnswerRe: About the control positioning in asp.net Pin
Member 34209032-Oct-09 6:28
Member 34209032-Oct-09 6:28 
There are a few ways of positioning controls. As mentioned in the previous replys, your best bet is to use a style sheet(css) to position controls on your web page.

1)You can create tables with rows and columns and basically just drag and drop controls into table cells and let them postion themselves but I don't recommend this. You'll run into a ton of cross browser positioning issues.

2)Use the cssClass attribute of your control and assign it to a class in your style sheet. Your css class can be set to postion a control relative to other controls on your page, or set you control to an absolute position on the page. Personally I like using relative postion to something like a main div on the page. Using relative postion will keep your controls in the same spot relative to the main div when a user resizes the page. Using absolute position will leave a control in the same spot when a user resizes the page. You might want to play around with both till you get comfortable...

Css examples:

.relativeControl
{
display:block;
postion:relative;
top: 100px;
left: 100px;
}

.absoluteControl
{
display:inline;
positon:absolute;
z-index: 100;
top: 100px;
left: 100px;

}

I hope this helps. Have fun Smile | :)
Questioncrystal report connection string from web.config Pin
vikas shukla1-Oct-09 20:13
vikas shukla1-Oct-09 20:13 
AnswerRe: crystal report connection string from web.config Pin
Christian Graus1-Oct-09 20:27
protectorChristian Graus1-Oct-09 20:27 
GeneralRe: crystal report connection string from web.config Pin
vikas shukla1-Oct-09 20:32
vikas shukla1-Oct-09 20:32 
GeneralRe: crystal report connection string from web.config Pin
Christian Graus1-Oct-09 21:14
protectorChristian Graus1-Oct-09 21:14 
QuestionViewState or Global variable Pin
Xmen Real 1-Oct-09 16:05
professional Xmen Real 1-Oct-09 16:05 
AnswerRe: ViewState or Global variable Pin
Christian Graus1-Oct-09 16:38
protectorChristian Graus1-Oct-09 16:38 
Questiononline forms in asp.net Pin
kuduva1-Oct-09 8:31
kuduva1-Oct-09 8:31 
AnswerRe: online forms in asp.net Pin
Abhijit Jana1-Oct-09 8:46
professionalAbhijit Jana1-Oct-09 8:46 
GeneralRe: online forms in asp.net Pin
kuduva1-Oct-09 10:16
kuduva1-Oct-09 10:16 
GeneralRe: online forms in asp.net Pin
Abhijit Jana1-Oct-09 10:39
professionalAbhijit Jana1-Oct-09 10:39 
GeneralRe: online forms in asp.net Pin
kuduva1-Oct-09 10:49
kuduva1-Oct-09 10:49 
GeneralRe: online forms in asp.net Pin
Abhijit Jana1-Oct-09 10:55
professionalAbhijit Jana1-Oct-09 10:55 
GeneralRe: online forms in asp.net Pin
kuduva1-Oct-09 10:59
kuduva1-Oct-09 10:59 
GeneralRe: online forms in asp.net Pin
Abhijit Jana1-Oct-09 11:03
professionalAbhijit Jana1-Oct-09 11:03 
GeneralRe: online forms in asp.net Pin
kuduva1-Oct-09 11:04
kuduva1-Oct-09 11:04 
AnswerRe: online forms in asp.net Pin
Abhijit Jana1-Oct-09 11:17
professionalAbhijit Jana1-Oct-09 11:17 
GeneralRe: online forms in asp.net Pin
Xmen Real 1-Oct-09 16:14
professional Xmen Real 1-Oct-09 16:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.