Click here to Skip to main content
15,891,704 members

Comments by Rohit More (Top 11 by date)

Rohit More 26-Aug-13 5:11am View    
Thank you for your kind reply Mr.Prafulhk,
yeah I can solve this problem with using hidden field. but its alternative. Actually, I didnt get this thing that why class member variable loosing its values when submitting form.
Rohit More 23-Apr-13 5:32am View    
I have traced out my problem, just I have modified my Question.
now problem is that if I remove modifyXmlFile()function then it works fine. but if I includes it then session gets lost.

and whatever I am modifying xml file, it contains around 15000 elements.
basic structure of my xml file is as following
<root>
<ListItem visited="No" value="ABC"/>
<ListItem visited="No" value="PQR"/>
..
Rohit More 19-Apr-13 8:56am View    
If add this Line before ie

Response.AddHeader("P3P", "CP=""CAO PSA OUR""")
Response.Redirect("default2.aspx", False)

Then I got same Session Id . but Value is null
Rohit More 19-Apr-13 8:55am View    
Deleted
If add this Line before ie

Response.AddHeader("P3P", "CP=""CAO PSA OUR""")
Response.Redirect("default2.aspx", False)

Then I got same Session Id . but Value is null
Rohit More 19-Apr-13 8:29am View    
just checked this link.
I checked session id of both pages so results are
when I used Response.Redirect() method -> Session Id gets Different
and when I use Server.Execute() method -> Session Id is Same but that Page (default2.aspx) didnt appear.

Everything is running within single Web Application. so , I think that situation is not applicable for this situation.