Home » questions » I have a asp.net page for Search............. pls read the details?

I have a asp.net page for Search............. pls read the details?

2006-08-08 21:30:25, Category: Programming & Design
I have a asp.net page for search records from db. and i show that records in a Datagrid, from the Grid when i click the particular record's id, i redirect the page to new page, in that page i show the record in details. after i have seen that record, if i cancel from the page. it should be come to the search page again. in that search page the keywords for search previously, what i hve given, should be maintain, when i come back to the search page from the NewPage(Record view in detail. ) Anyone can tell pls how to do that?

Answers

  1. Indian_Male

    On 2006-08-09 00:34:29


    Probably you are using hyperlink to transfer user to see the record details. Instaed do like this: * When clicked on ID, Pass the ID to a javascript code function. *That function will create a popup window dynamically and calls the new page by passing the ID as query string. *In the new window, when you close, it just returns to old window. *That page is not refreshed.