Hi Everybody,

I'm Natheer..
Could you please help me?

My question is:

Response.Write("Success1");
Response.Redirect("A Page.HTML");
Response.Write("Success2");//Thanx

I want to see on the browser : Success1Success2
but this way showing the responding of the new redirected page.
I'm using this way because I don't know if there is another way..

Thank you!!

Recommended Answers

All 3 Replies

hi...
you need to remove a line from ur code...

Response.Write("Success1Success2");

let me know.. if u face pbm still

Thank you Dear kameswari,

But, I don't mean this, I mean how to call this page ("A Page.HTML")
and don't let it loaded on the browser.

Look the code is:

Response.Write("Success1");
Response.Redirect("A Page.HTML");
Response.Write("Success2");

if i run it step by step we will see this at first:
Success1

now i want to execute some functions on the load event on the (A Page.HTML).

when i use this way to call this page:

(Response.Redirect("A Page.HTML");

the browser will be jump to execute the instructions on the redirected page and ignore the next statement:
(i mean ignored this statement Response.Write("Success2");.)

and because ("A Page.HTML") don't has any response written to the browser the page will be displayed empty, not Success1Success2

Forgive me I'm bad in English, I wish it is clear now..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.