Ask a Question related to ASP.NET General, Design and Development.
-
VB Programmer #1
Question: Response.write (squiggly line)
I can use response.write in any one of my webforms. But when I try to use it
in a Module's public sub there is a squiggly blue line under response.
Hovering over it says 'Name response is not declared.' Do I have to import
something?
Any ideas?
Thanks in advance.
VB Programmer Guest
-
response.write URL
I have a page which lists conferences and events which the company for which I coded the site attends or hosts themselves. They want to be able to... -
If response.write help
Hi, I am trying to code my asp page so that if you are on page Y, the link to page Y in the nav, is in the over state to help users identify where... -
quotes in response.write
Hi there, I want to do: response.write("bla bla bla "in quotes" bla bla") How do I show the quotes on the screen in asp like I have to do \"... -
Response.Write and Response.Redirect
On my Page_Load event, i need to do some validation and then either let them proceed, or display a error message and boot them back to the previous... -
Question: How to get more info on tooltip error/squiggly
Thanks. When I get an error like this, where can I go to get more info/read about the error? I need to be able to 'look it up'. "Steve C. Orr,... -
Steve C. Orr, MCSD #2
Re: Question: Response.write (squiggly line)
You simply need to refer to the current context.
You can do this by specifying the full namespace like this:
System.Web.HttpContext.Current.Response.Write("... ")
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
news:eMI$ZTAQDHA.560@TK2MSFTNGP10.phx.gbl...it> I can use response.write in any one of my webforms. But when I try to use> in a Module's public sub there is a squiggly blue line under response.
> Hovering over it says 'Name response is not declared.' Do I have to import
> something?
>
> Any ideas?
>
> Thanks in advance.
>
>
Steve C. Orr, MCSD Guest



Reply With Quote

