ASP.NET page qury

  • Thread starter Thread starter shishir.y
  • Start date Start date
S

shishir.y

Hi All,

I will try to explain the problem I am facing. I have an aspx
page which loads properly. It has a text box. When the user enter
something in the text box and press button control next to it, I need
to do some kind of validation and will provide a confirm message to the
user (using JScript, I have done this).
Now what is happening is, when user selects "OK" from the confirm
message box, I am reading the return response of user in Page_Load as
below. Based upon the response, I need to proceed with some processing
here. I do the processing (which is basically download some file) and
then when I return the page doesn't load !!!
Any clue in this regard will be of great help.

Thanks,
Shishir.
 
Hello Shishir,

Can you be more specific? Like can you provide the code?

Cheers!
Rajeev
 
Hello Shishir,

Are you conveying that on Page_Load event, after you click OK button,
you are not able to get the values from the form?

Thanks,
Rajeev
 
when the browser makes a page request, its expecting one response file. you
can either return an html page, or a download file, but not both.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top