Click here to Skip to main content
15,906,341 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have a function like this:
if (act == "getpendingS3")
        {
            string response = S3DetailsClass.getS3details(0);
            Response.Write(response);
        }
        if (act == "getcompletedS3")
        {
            //Response.Clear();
            string response = S3DetailsClass.getS3details(1);
            Response.Write(response);
            //Response.End();
        }


Data will be display according to the request function by the user but if we call first function then its ok next time when i get call the second function then previous function data is also display.

I want to clear the web page.

Please help.

Thanks in advance
Posted
Updated 19-May-11 2:50am
v2
Comments
R. Giskard Reventlov 19-May-11 8:48am    
You've already posted this and had some replies.
[no name] 19-May-11 8:49am    
Don't CrossPost.

1 solution

Don't Cross Post the same question. Hope you have got the answers where you have previously posted.
 
Share this answer
 
Comments
rahul dev123 19-May-11 9:05am    
No...Thats why i send it clearly.. Please give me the solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900