How to redirect different without looseing the data....

Posted by Santosh4u under ASP.NET on 9/5/2012 | Points: 10 | Views : 1903 | Status : [Member] | Replies : 4
Hi Eveyone,
how to work with different pages together without loosing the data..

Ex: i have one page called(form1.aspx) having 3 tabs..now in first tab click i am doing some operation in form1.aspx then i am clicking one linkbutton to redirect the form2.aspx page
,so after redirecting to form2.aspx page the operation should not be stop in form1.aspx page and if again i am coming back to the form1.aspx i could be able to see the operation what i have done....


Thanks
Santosh




Responses

Posted by: Hariinakoti on: 9/5/2012 [Member] Starter | Points: 25

Up
0
Down
@Santosh,
if you are not write any clear method in ur 1st form your entire data safe you can try once.

Thanks & Regards
Hari

Santosh4u, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Vasanthmvp on: 9/6/2012 [Member] Starter | Points: 25

Up
0
Down
Hi,
Could you be more clear on your question.
If i am not wrong, Once after your Page is loaded completely, you can see the link button. On click of your link button you are redirecting to another page. But the operation on first name should continue. Im presenting you a simple example here.
Eg:

.aspx Page:


<script type="text/javascript">
function method() {
window.open("http://www.google.com");
alert("hai");
}
</script>

<asp:LinkButton ID="lb" runat="server" Text="Link" OnClientClick="method()" />


Under .aspx.cs

protected void Page_Load(object sender, EventArgs e)
{
lb.Click += new System.EventHandler(Validation_Click);
}
protected void Validation_Click(object sender, EventArgs e)
{
Response.Write("hai");
}


Regards,

Awesome Coding !! :)

Santosh4u, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Santosh4u on: 9/6/2012 [Member] Bronze | Points: 25

Up
0
Down
Hi Vasanthmvp,

i am just clarifying my requirement properly..

i have 3 different tabs in a page and i wanted to do different operations in 3 different tabs simultaneously and after that i wanted to redirect different page and comeback to the first page the process should be going on...means the operation should not stop after coming back from different page..

this my scenario , u can give me any ideas/example using any control not that tab control..
waiting for your response

Thanks
Santosh




Santosh4u, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Santosh4u on: 9/8/2012 [Member] Bronze | Points: 25

Up
0
Down
Hi ,

operation means getting data from database and generation report..same time i can go to some other link and generate report without stopping the process..

please refer the attached image for better understanding..

i need same this kind of functionality in attached file in asp.net

i'e i am clicking in Rimsha Masih link on left side, some process is going on right side of the same page with loading status and then if i click on another link(like Cooperation) it should redirect different page and the process should not stop in (Rimsha Masih) page..

hope this will make you very clear..

it's really very important , i am not getting any ideas to it.

please help me...

thanks
Santosh
 Download source file

Santosh4u, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response