Click here to Skip to main content
15,904,935 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Help with listview Pin
Member 406547220-Jun-08 1:09
Member 406547220-Jun-08 1:09 
Questiontrying to connect to database Pin
jds120719-Jun-08 7:25
jds120719-Jun-08 7:25 
AnswerRe: trying to connect to database Pin
Blue_Boy19-Jun-08 9:33
Blue_Boy19-Jun-08 9:33 
QuestionCollapsiblePanelExtender Pin
vjvjvjvj19-Jun-08 6:19
vjvjvjvj19-Jun-08 6:19 
QuestionLogout Problem in .net 2.0 Pin
M_Menon19-Jun-08 5:27
M_Menon19-Jun-08 5:27 
AnswerRe: Logout Problem in .net 2.0 Pin
SomeGuyThatIsMe19-Jun-08 8:39
SomeGuyThatIsMe19-Jun-08 8:39 
GeneralRe: Logout Problem in .net 2.0 Pin
M_Menon19-Jun-08 19:11
M_Menon19-Jun-08 19:11 
AnswerRe: Logout Problem in .net 2.0 Pin
Venkatesh Mookkan19-Jun-08 18:10
Venkatesh Mookkan19-Jun-08 18:10 
M_Menon wrote:
Now i am facing the problem in Logout is that, Once i click Logout it takes me back to my Login Page.


This is because your page is cached in the user's machine. When you hit back it normally loads from the temporary internet files where normally the files will download. To overcome this problem you need to set cacheability to your pages.

Try any of this code which remove the cacheability of your web page,

Response.Cache.SetCacheability(HttpCacheability.Server);


or

Response.Cache.SetCacheability(HttpCacheability.ServerAndNoCache);


or

Response.Cache.SetCacheability(HttpCacheability.ServerAndPrivate);



Venkatesh Mookkan
My: Website | Yahoo Group | Blog Spot

GeneralRe: Logout Problem in .net 2.0 Pin
M_Menon19-Jun-08 19:19
M_Menon19-Jun-08 19:19 
GeneralRe: Logout Problem in .net 2.0 Pin
Venkatesh Mookkan19-Jun-08 19:39
Venkatesh Mookkan19-Jun-08 19:39 
QuestionNeed to deploy webservice and web application in same project. How to rename app_code.dll file Pin
Rizwan Bashir19-Jun-08 3:38
Rizwan Bashir19-Jun-08 3:38 
AnswerRe: Need to deploy webservice and web application in same project. How to rename app_code.dll file Pin
Venkatesh Mookkan19-Jun-08 18:13
Venkatesh Mookkan19-Jun-08 18:13 
QuestionServer Controls - please help? Pin
windhopper19-Jun-08 2:51
windhopper19-Jun-08 2:51 
Questiondisplay html page [modified] Pin
jason_mf19-Jun-08 2:51
jason_mf19-Jun-08 2:51 
AnswerRe: display html page Pin
Gayani Devapriya19-Jun-08 4:13
Gayani Devapriya19-Jun-08 4:13 
GeneralRe: display html page Pin
jason_mf19-Jun-08 18:48
jason_mf19-Jun-08 18:48 
Questionhow to display videos in Asp.net Pin
Reethika19-Jun-08 2:33
Reethika19-Jun-08 2:33 
AnswerRe: how to display videos in Asp.net Pin
windhopper19-Jun-08 5:03
windhopper19-Jun-08 5:03 
Questionhow to display message box Pin
mohd imran abdul aziz19-Jun-08 2:30
mohd imran abdul aziz19-Jun-08 2:30 
AnswerRe: how to display message box Pin
~V~19-Jun-08 2:36
~V~19-Jun-08 2:36 
Questioncreating word document using c#/ vb/ crystal reports Pin
Puneri19-Jun-08 1:37
Puneri19-Jun-08 1:37 
QuestionHow to change color code Manually from orginal color to light-color in asp.net Pin
brettokumar19-Jun-08 1:27
professionalbrettokumar19-Jun-08 1:27 
QuestionReturning selected row of a gridview Pin
madhavi.kona19-Jun-08 1:09
madhavi.kona19-Jun-08 1:09 
AnswerRe: Returning selected row of a gridview Pin
Sam Xavier19-Jun-08 6:38
Sam Xavier19-Jun-08 6:38 
QuestionAvoid Flickering in asp.net web appllication in NON-IE browsers Pin
pavankumarchakilam19-Jun-08 1:03
pavankumarchakilam19-Jun-08 1:03 

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.