Response.Write problem !!
-
hi, generallary if we give response.write. it will be printed on top.But i don't want that.I want to display it in a desired location.Can we specify any location for Response.Write?If yes,how? thanks vijay
-
No, you can't. You should only use Response.Write if you use it to output the entire page yourself. Put a Label or Literal control on the page where you want the output, and assign it to the Text property of the control.
--- b { font-weight: normal; }
Yes You can,:laugh: Give Response.Write("
Hi Guffa
"); You can change LEFt & TOP as you wish. Cheers !!! Sony Sebastian :laugh:
-
Yes You can,:laugh: Give Response.Write("
Hi Guffa
"); You can change LEFt & TOP as you wish. Cheers !!! Sony Sebastian :laugh:
Yes, you can do like that, but not if you want a well working web page. The tag will be placed at the top of the html code, even before the doctype and html tags. This makes the html code invalid, and throws the browser into quirks mode. This is especially serious for Internet Explorer, because it renders the page quite differently in this mode.
--- b { font-weight: normal; }