What type of control to use in asp.net

T

Tony Johansson

If I want to display this
"Application path is :" + Request.Path
"OS platform : " + Request.Browser.Platform
"Browser type is : " + Request.Browser.Type
"Browser support cookie : " +"Request.Browser.Cookies ? "true" :"false";
"Browser support VBScript : " + Request.Browser.VBScript ? "true"
:"false"
"Browser support JavaScript :"+ Request.Browser.JavaScript ? "true" :
"false"
"Browser is using :" + Request.HttpMethod + " data transfer method";
with background yellow what is the most suitable control to use ?
I could use label + label or label + TextBox
I just wonder if table would be a good choice.
If yes which table a HTML table or web control table ?

//Tony
 
A

Arne Vajhøj

If I want to display this
"Application path is :" + Request.Path
"OS platform : " + Request.Browser.Platform
"Browser type is : " + Request.Browser.Type
"Browser support cookie : " +"Request.Browser.Cookies ? "true" :"false";
"Browser support VBScript : " + Request.Browser.VBScript ? "true"
:"false"
"Browser support JavaScript :"+ Request.Browser.JavaScript ? "true" :
"false"
"Browser is using :" + Request.HttpMethod + " data transfer method";
with background yellow what is the most suitable control to use ?
I could use label + label or label + TextBox
I just wonder if table would be a good choice.
If yes which table a HTML table or web control table ?

I would just use Label.

Arne
 

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