
Signature
Göran Andersson
_____
http://www.guffa.com
Hi Moondaddy,
I think this case is the same to those other threads you've posted, correct?
If so, I think get additional response text should not be a problem since
you're using a hidden <iframe> so that no one will see it. If what you
concern is to reduce the response data(avoid useless data transfer), you
can use Response.End to stop the communiation after you've done the work.
e.g.
==========
protected void Page_Load(object sender, EventArgs e)
{
//do your work here
Response.End();
}
=========
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>Date: Wed, 12 Sep 2007 23:43:06 +0200
>From: =?ISO-8859-1?Q?G=F6ran_Andersson?= <guffa@guffa.com>
>User-Agent: Thunderbird 2.0.0.6 (Windows/20070728)
>MIME-Version: 1.0
>Subject: Re: Prevent round trip of postback
>> I have an htm page that will be passing data to the server via parameters in
>> a hidden iframe's aspx page. I not need the aspx page to return back to the
[quoted text clipped - 14 lines]
>code example for AJAX has code that sends a request using XMLHTTP and
>gets the response as a string.
moondaddy - 05 Oct 2007 16:04 GMT
Thanks Steven this is what I was looking for. And also thanks to Göran as I
will ultimately end up using his suggestion.
> Hi Moondaddy,
>
[quoted text clipped - 56 lines]
>>code example for AJAX has code that sends a request using XMLHTTP and
>>gets the response as a string.