Click here to Skip to main content
15,886,199 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDynamically update price based on exchange rate Pin
Deepa420-Feb-13 20:06
Deepa420-Feb-13 20:06 
AnswerRe: Dynamically update price based on exchange rate Pin
Sandeep Mewara20-Feb-13 21:49
mveSandeep Mewara20-Feb-13 21:49 
GeneralRe: Dynamically update price based on exchange rate Pin
Deepa420-Feb-13 22:00
Deepa420-Feb-13 22:00 
GeneralRe: Dynamically update price based on exchange rate Pin
Sandeep Mewara20-Feb-13 22:59
mveSandeep Mewara20-Feb-13 22:59 
AnswerRe: Dynamically update price based on exchange rate Pin
Richard MacCutchan20-Feb-13 23:02
mveRichard MacCutchan20-Feb-13 23:02 
AnswerUse webservice for exchange rate Pin
David Mujica21-Feb-13 3:04
David Mujica21-Feb-13 3:04 
QuestionASP.NET 4.0 How to make session values alive still user logout. Pin
VishwaKL20-Feb-13 19:36
VishwaKL20-Feb-13 19:36 
AnswerRe: ASP.NET 4.0 How to make session values alive still user logout. Pin
Sandeep Mewara20-Feb-13 21:46
mveSandeep Mewara20-Feb-13 21:46 
VishwaKL wrote:
How to make session values alive still user logout.

Not advisable as you will be blocking sever memory and can be very bad when multiple people connect.


VishwaKL wrote:
make it '0' to never expire, but still my session expire on 20 min

Session timeout is set in Web.Config file. Default is 20 min. Change it to as per need there and will be used by IIS. You can also have FormsAuthentication timeout if you are using FormsAuthentication.

Following is sample change in Web.Config file:
XML
<system.web>
    <authentication mode="Forms">
          <forms timeout="55"/>
    </authentication>

    <sessionState timeout="60"  />
</system.web>

Sandeep Mewara
Microsoft ASP.NET MVP 2012 & 2013

[My Blog]: Sandeep Mewara's Tech Journal!
[My Latest Article]: HTML5 Quick Start Web Application

QuestionUser control variable not declared in .aspx page Pin
queenmichelle20-Feb-13 14:16
queenmichelle20-Feb-13 14:16 
AnswerRe: User control variable not declared in .aspx page Pin
Karthik Harve20-Feb-13 17:45
professionalKarthik Harve20-Feb-13 17:45 
AnswerRe: User control variable not declared in .aspx page Pin
Sandeep Mewara20-Feb-13 19:17
mveSandeep Mewara20-Feb-13 19:17 
QuestionThe information session ID Pin
Mohammad Hussein Fakhravari20-Feb-13 12:45
Mohammad Hussein Fakhravari20-Feb-13 12:45 
AnswerRe: The information session ID Pin
Sandeep Mewara20-Feb-13 17:14
mveSandeep Mewara20-Feb-13 17:14 
AnswerRe: The information session ID Pin
Mohammad Hussein Fakhravari21-Feb-13 8:28
Mohammad Hussein Fakhravari21-Feb-13 8:28 
Questionbutton disable until all required fields are filled Pin
Member 870181320-Feb-13 7:12
Member 870181320-Feb-13 7:12 
AnswerRe: button disable until all required fields are filled Pin
Sandeep Mewara20-Feb-13 17:13
mveSandeep Mewara20-Feb-13 17:13 
GeneralRe: button disable until all required fields are filled Pin
Member 870181320-Feb-13 20:04
Member 870181320-Feb-13 20:04 
GeneralRe: button disable until all required fields are filled Pin
Sandeep Mewara20-Feb-13 21:42
mveSandeep Mewara20-Feb-13 21:42 
GeneralRe: button disable until all required fields are filled Pin
Member 870181320-Feb-13 21:57
Member 870181320-Feb-13 21:57 
GeneralRe: button disable until all required fields are filled Pin
Sandeep Mewara20-Feb-13 22:55
mveSandeep Mewara20-Feb-13 22:55 
GeneralRe: button disable until all required fields are filled Pin
Member 870181321-Feb-13 2:07
Member 870181321-Feb-13 2:07 
GeneralRe: button disable until all required fields are filled Pin
Member 870181321-Feb-13 5:00
Member 870181321-Feb-13 5:00 
GeneralRe: button disable until all required fields are filled Pin
Member 870181320-Feb-13 22:09
Member 870181320-Feb-13 22:09 
QuestionPlease Wait .... Pin
jojoba201119-Feb-13 21:19
jojoba201119-Feb-13 21:19 
AnswerRe: Please Wait .... Pin
Sandeep Mewara19-Feb-13 22:11
mveSandeep Mewara19-Feb-13 22:11 

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.