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
"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