Click here to Skip to main content
15,885,546 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Help required in Integrating 3D Engine in ASP.net Web application Pin
jkirkerx15-Jul-13 13:46
professionaljkirkerx15-Jul-13 13:46 
QuestionHow do you clear temporary files in an ASP.NET website project? Pin
Xarzu15-Jul-13 0:25
Xarzu15-Jul-13 0:25 
AnswerRe: How do you clear temporary files in an ASP.NET website project? Pin
Ali Al Omairi(Abu AlHassan)15-Jul-13 2:08
professionalAli Al Omairi(Abu AlHassan)15-Jul-13 2:08 
AnswerRe: How do you clear temporary files in an ASP.NET website project? Pin
bVagadishnu15-Jul-13 7:22
bVagadishnu15-Jul-13 7:22 
Questionhow to end the session of chrome browser in asp.net (it is working in IE but not in Chrome) Pin
ven75314-Jul-13 7:14
ven75314-Jul-13 7:14 
AnswerRe: how to end the session of chrome browser in asp.net (it is working in IE but not in Chrome) Pin
jkirkerx14-Jul-13 12:46
professionaljkirkerx14-Jul-13 12:46 
GeneralRe: how to end the session of chrome browser in asp.net (it is working in IE but not in Chrome) Pin
ven75315-Jul-13 2:08
ven75315-Jul-13 2:08 
GeneralRe: how to end the session of chrome browser in asp.net (it is working in IE but not in Chrome) Pin
jkirkerx15-Jul-13 13:16
professionaljkirkerx15-Jul-13 13:16 
Technically session.removeAll works. Keep in mind that it's a server side call, and will erase all the session values on the web server.

Now if the browser still honors the session value, or thinks that the session value is valid, then that's a browser issue, or something else on the server is keeping the session value alive.

So you make a session in a test page, that contains a word or something, and click a button to remove all, and see if the session is erased., and play around with it.

I know that in certain modes, the session value will write a cookie on the client, with the session values. Using Firefox to examine the cookie values is useful to confirm the removal of the session value.

Chrome has alot of bugs in it, and became very bloated with code. It could just be a Chrome issue. That's out of your control, nothing you can do about it.

[EDIT]

Maybe it's the way you implemented the session, eg.
Dim m_context as httpcontext = httpcontext.current
m_context.session.add("Login", true)

if (true = m_context.session("Login") then
 m_conetxt.response.redirect("admin.aspx")
End if


or perhaps the correct context was not used to create or remove the session, or the spelling of the session name does not exactly match.

Don't forget to delete your browser cache for a true test.
QuestionHttpContext values are lost during AJAX call after Adding masterpage Pin
Albert8313-Jul-13 22:29
Albert8313-Jul-13 22:29 
AnswerRe: HttpContext values are lost during AJAX call after Adding masterpage Pin
jkirkerx14-Jul-13 8:53
professionaljkirkerx14-Jul-13 8:53 
AnswerRe: HttpContext values are lost during AJAX call after Adding masterpage Pin
Albert8317-Aug-13 17:08
Albert8317-Aug-13 17:08 
QuestionThe file you are trying to open,XXXX,is in different format than specified by the file extension Pin
Jimmiraghu13-Jul-13 2:23
Jimmiraghu13-Jul-13 2:23 
AnswerRe: The file you are trying to open,XXXX,is in different format than specified by the file extension Pin
Bernhard Hiller14-Jul-13 21:58
Bernhard Hiller14-Jul-13 21:58 
Questionsample projects required Pin
ppayal12-Jul-13 20:29
ppayal12-Jul-13 20:29 
AnswerRe: sample projects required Pin
Richard MacCutchan12-Jul-13 22:19
mveRichard MacCutchan12-Jul-13 22:19 
QuestionExport to excel /xlsx file Pin
Ballita12-Jul-13 1:53
Ballita12-Jul-13 1:53 
AnswerRe: Export to excel /xlsx file Pin
ZurdoDev12-Jul-13 7:25
professionalZurdoDev12-Jul-13 7:25 
Questionimage icon should display from data base on leftside of treeview. Pin
christhuxavier11-Jul-13 3:15
christhuxavier11-Jul-13 3:15 
AnswerRe: image icon should display from data base on leftside of treeview. Pin
jkirkerx11-Jul-13 11:58
professionaljkirkerx11-Jul-13 11:58 
QuestionSelect Excel File as Database table in runtime - ASP.Net - C# Pin
SravanKumar-A11-Jul-13 2:51
SravanKumar-A11-Jul-13 2:51 
AnswerRe: Select Excel File as Database table in runtime - ASP.Net - C# Pin
chester_it2111-Jul-13 8:59
chester_it2111-Jul-13 8:59 
QuestionMigration from google calendar V2 to V3 Pin
Er Himanshu Jain11-Jul-13 2:13
Er Himanshu Jain11-Jul-13 2:13 
AnswerRe: Migration from google calendar V2 to V3 Pin
Richard MacCutchan11-Jul-13 2:27
mveRichard MacCutchan11-Jul-13 2:27 
AnswerRe: Migration from google calendar V2 to V3 Pin
Er Himanshu Jain11-Jul-13 2:34
Er Himanshu Jain11-Jul-13 2:34 
GeneralWSDL issues Pin
asv10-Jul-13 22:48
asv10-Jul-13 22:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.