|
How to use Response.Write from a code behind page
Home :: ASP.NET :: How To
Having difficulty using Response.Write from a code behind page? You need to first get a hook into the HTTPContext!
Dim ctx As HttpContext = HttpContext.Current
ctx.Response.Write(FormatDateTime(dtm, 3) & " Today ")
Another problem that isn't documented!The rest of this page is hidden, you must be a member to view itTo become a member and get immediate access to the course please join here Free!
Next >> Response.Write from a class
|