473,765 Members | 2,172 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Response.Write' s unusual behavior (i think)

why does Response.Write in a method of code-beind class when called from
inpage code (i.e in <%---%>), after creating object of that class, fails
when called
while it works perfectly ok while calling the same method same way except
for creating object instead directly calling the method?
i get this when trying to do that:-

*************** *************** *************** *****
Response is not available in this context.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.Http Exception: Response is not available in
this context.

Source Error:

Line 32: for (a=1; a<8; a++)
Line 33: {
Line 34: Response.Write( "<H"+a.ToString ()+">Heading
<H"+a.ToString( )+">");
Line 35:
Line 36: }
*************** *************** *************** *****

i'm new to the .NET stuff and was playing around with it when came across
above......let me know if i'm doing something wrong there.
Thanks in advance.

Best Regards,
Farooq Khan
Nov 17 '05 #1
3 1701
Hi Farooq,

Where is this code in your application? The Reponse object is not
available in some areas.

Jim Cheshire [MSFT]
Developer Support
ASP.NET
ja******@online .microsoft.com

This post is provided as-is with no warranties and confers no rights.
--------------------
From: "Farooq Khan" <fa*********@ho tmail.com>
Subject: Response.Write' s unusual behavior (i think)
Date: Thu, 23 Oct 2003 21:45:30 +0500
Lines: 36
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <u1************ **@TK2MSFTNGP12 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
NNTP-Posting-Host: 202.141.251.2
Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1860 93
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet

why does Response.Write in a method of code-beind class when called from
inpage code (i.e in <%---%>), after creating object of that class, fails
when called
while it works perfectly ok while calling the same method same way except
for creating object instead directly calling the method?
i get this when trying to do that:-

************** *************** *************** ******
Response is not available in this context.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.Http Exception: Response is not available in
this context.

Source Error:

Line 32: for (a=1; a<8; a++)
Line 33: {
Line 34: Response.Write( "<H"+a.ToString ()+">Heading
<H"+a.ToString ()+">");
Line 35:
Line 36: }
************** *************** *************** ******

i'm new to the .NET stuff and was playing around with it when came across
above......l et me know if i'm doing something wrong there.
Thanks in advance.

Best Regards,
Farooq Khan


Nov 17 '05 #2
Why do you instantiate WebApplication7 .WebForm2?
It's done by ASP.NET.
You can not simply create instance of the WebForm and expect it to work. You
must initalize it correctly which is ASP.NET job.

What are you trying to achieve?

George.

"Farooq Khan" <fa*********@ho tmail.com> wrote in message
news:uf******** ******@TK2MSFTN GP11.phx.gbl...
attached is the code file. i have cut down all the irrelevant stuff. in
.aspx file i have commented the line of code causing the trouble. let me
know what i'm doing wrong.
in short the Response.Write call is beign made from the code behind class.

Best Regards,
Farooq Khan
"Jim Cheshire [MSFT]" <ja******@onlin e.microsoft.com > wrote in message
news:JB******** ******@cpmsftng xa06.phx.gbl...
Hi Farooq,

Where is this code in your application? The Reponse object is not
available in some areas.

Jim Cheshire [MSFT]
Developer Support
ASP.NET
ja******@online .microsoft.com

This post is provided as-is with no warranties and confers no rights.
--------------------
From: "Farooq Khan" <fa*********@ho tmail.com>
Subject: Response.Write' s unusual behavior (i think)
Date: Thu, 23 Oct 2003 21:45:30 +0500
Lines: 36
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <u1************ **@TK2MSFTNGP12 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
NNTP-Posting-Host: 202.141.251.2
Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1860 93X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet

why does Response.Write in a method of code-beind class when called frominpage code (i.e in <%---%>), after creating object of that class, failswhen called
while it works perfectly ok while calling the same method same way exceptfor creating object instead directly calling the method?
i get this when trying to do that:-

************** *************** *************** ******
Response is not available in this context.
Description: An unhandled exception occurred during the execution of thecurrent web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Web.Http Exception: Response is not available inthis context.

Source Error:

Line 32: for (a=1; a<8; a++)
Line 33: {
Line 34: Response.Write( "<H"+a.ToString ()+">Heading
<H"+a.ToString ()+">");
Line 35:
Line 36: }
************** *************** *************** ******

i'm new to the .NET stuff and was playing around with it when came acrossabove......l et me know if i'm doing something wrong there.
Thanks in advance.

Best Regards,
Farooq Khan


Nov 17 '05 #3
Farooq,

There are a couple of issues here:

1. Don't use inline code like you did in classic ASP. You want to keep
your ASP.NET code in your code-behind.

2. Your code is failing because you are trying to call the Method() method
on a new instance of WebForm2, and that instance does not have a Response
object. You can only access the Response object for the page that is
currently executing.

Jim Cheshire [MSFT]
Developer Support
ASP.NET
ja******@online .microsoft.com

This post is provided as-is with no warranties and confers no rights.

--------------------
From: "Farooq Khan" <fa*********@ho tmail.com>
References: <u1************ **@TK2MSFTNGP12 .phx.gbl> <JB************ **@cpmsftngxa06 .phx.gbl>Subject: Re: Response.Write' s unusual behavior (i think)
Date: Fri, 24 Oct 2003 13:41:33 +0500
Lines: 259
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <uf************ **@TK2MSFTNGP11 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
NNTP-Posting-Host: 202.141.251.2
Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP11.phx.g bl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:1862 69
X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet

attached is the code file. i have cut down all the irrelevant stuff. in
.aspx file i have commented the line of code causing the trouble. let me
know what i'm doing wrong.
in short the Response.Write call is beign made from the code behind class.

Best Regards,
Farooq Khan
"Jim Cheshire [MSFT]" <ja******@onlin e.microsoft.com > wrote in message
news:JB******* *******@cpmsftn gxa06.phx.gbl.. .
Hi Farooq,

Where is this code in your application? The Reponse object is not
available in some areas.

Jim Cheshire [MSFT]
Developer Support
ASP.NET
ja******@online .microsoft.com

This post is provided as-is with no warranties and confers no rights.
--------------------
>From: "Farooq Khan" <fa*********@ho tmail.com>
>Subject: Response.Write' s unusual behavior (i think)
>Date: Thu, 23 Oct 2003 21:45:30 +0500
>Lines: 36
>X-Priority: 3
>X-MSMail-Priority: Normal
>X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
>X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
>Message-ID: <u1************ **@TK2MSFTNGP12 .phx.gbl>
>Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
>NNTP-Posting-Host: 202.141.251.2
>Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP12.phx.g bl
>Xref: cpmsftngxa06.ph x.gblmicrosoft.publ ic.dotnet.frame work.aspnet:186 093 >X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
>
>why does Response.Write in a method of code-beind class when called from
>inpage code (i.e in <%---%>), after creating object of that class, fails
>when called
>while it works perfectly ok while calling the same method same way except >for creating object instead directly calling the method?
>i get this when trying to do that:-
>
>************** *************** *************** ******
>Response is not available in this context.
>Description: An unhandled exception occurred during the execution of the
>current web request. Please review the stack trace for more information
>about the error and where it originated in the code.
>
>Exception Details: System.Web.Http Exception: Response is not available in >this context.
>
>Source Error:
>
>Line 32: for (a=1; a<8; a++)
>Line 33: {
>Line 34: Response.Write( "<H"+a.ToString ()+">Heading
><H"+a.ToString ()+">");
>Line 35:
>Line 36: }
>
>
>************** *************** *************** ******
>
>i'm new to the .NET stuff and was playing around with it when came across >above......l et me know if i'm doing something wrong there.
>Thanks in advance.
>
>Best Regards,
>Farooq Khan
>
>
>



Nov 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1465
by: Colin Colin | last post by:
I have an ASP program that is getting an error. When I get the error I get Page Cannot Be Displayed along with the line that causes the error and what the error is. What I am not getting is any data that I write via response.write before the error occurs. The error is happening in a loop, on the third line below: RESPONSE.WRITE("x=" & x & ", " & aFieldsData(UpdateRecNum,x) & "<BR>") tFLD = trim(aFieldsData(UpdateRecNum,x)) tFLD =...
13
4752
by: TinyTim | last post by:
I'm a newbie at ASP & HTML. It seems that when you use server side code and you're going to return a customized HTML form with several fields and labels, you have to do an extensive amount of Response.Writes. Are there any tools that will let you design the form then convert that form to Response.Writes that you can further customize with ASP logic? For instance: use Dreamweaver to design the form, then another program to convert to...
2
1722
by: Indra Heckenbach | last post by:
I have recently come across an unusual behavior with Postgres 7.3.4 on a Linux RH 9 system. My database has encoding set to "UNICODE", and the table includes Japanese text. I'm trying to issue a query like this: SELECT * FROM sales WHERE name='ja-text'; This query ignores all japanese characters in the comparison text. It matches properly on ascii chars, but skips right over ja chars. I tried using "LIKE" instead of "=", and this...
4
2640
by: etropic | last post by:
Im confused I want an .aspx page to have a table with my data in it. At first I wrote FillTablew(); in my Page_Load even in the Code Behind file. I had it loop the db etc. and use Response.Write of a bunch of strings. This works great as long as all I want is the results of those Response.Writes I believe what I REALLY want is to convert those Response.Writes to a str cat in the code behind, and then in the body of my .aspx page to do...
1
1618
by: Marty McDonald | last post by:
I have a web page. It uses web service (on localhost) to get data. I'm able to get to my web service properly, data is returned. Then, via JavaScript, I HTTP post to another site. Instead of seeing the other site, I see the SoapException... <?xml version="1.0" encoding="utf-8" ?> - <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
12
7916
by: Jim Rodgers | last post by:
I have a big asp file that has an error under certain conditions -- totally repeatable. However, it only fails when I set response.buffer = True at the top. WHen I set it False in order to debug it, it works every time! I even set it to True, but did a .Flush just before the error, and the error won't happen. It only happens when response.buffer is True and no .response.flush is issued. The error is a string variable turns-up empty...
4
1299
by: D | last post by:
Hi I'm obviously still learning here but what I've created is a page with a calendar and button. When I click the button I do a number of tasks and would like to output the progress in messages such as Starting TaskA Processing TaskA Completed TaskA
4
4327
by: cbtechlists | last post by:
I have an ASP app that we've moved from a Windows 2000 to a Windows 2003 server (sql server 2000 to sql server 2005). The job runs fine on the old servers. Part of the app takes a recordset and response.writes out comma delimited strings so that the results are opened in Excel or saved to a flat file. Basically, it looks something like this like this:
4
2319
by: rakesh19 | last post by:
Hi, I am dynamically including .js files on a button click. There is a segregated function to do the same. It doesnt seems to work well. If I put a alert tag in the includeJSFile function, it works well. Else it says init is not defined. Is there peculiarity in how function calls are terminated or something I am attaching the code snippet below. headTag.appendChild(imageScriptTag); ...
0
9568
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10156
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10007
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9951
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9832
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7375
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5275
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3924
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3531
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.