Stories recently tagged with 'Session'

ASP.NET MVC, session and concurrent requests: not what you’d expect(blog.whiletrue.com)

submitted by bh213bh213(255) 1 year, 4 months ago

ASP.NET Session handling causes problems when single session is accessed from more than one request (such as AJAX requests). read more...

1 comment |category: |Views: 298

tags: another

Session Attacks and ASP.NET - Part 2(blogs.sans.org)

submitted by j.montyj.monty(1868) 2 years, 7 months ago

In Session Attacks and ASP.NET - Part 1, I introduced one type of attack against the session called Session Fixation as well as ASP.NET's session architecture and authentication architecture. In this second post, I'll delve into a couple specific attack scenarios, cover risk reduction, and countermeasures specific to ASP.NET for protecting against session attacks in ASP.NET read more...

add a comment |category: |Views: 321

tags: another

Session Attacks and ASP.NET - Part 1(blogs.sans.org)

submitted by j.montyj.monty(1868) 2 years, 7 months ago

I’ve spent some time recently looking for updated information regarding session attacks as they apply to ASP.NET and am still not completely satisfied with how Microsoft has decided to implement session management in ASP.NET 2.0+. Part 1 explores ASP.NET session management, authentication, and session attacks against ASP.NET with a comparison of how ASP.NET stacks up against mitigation techniques against these attacks. read more...

add a comment |category: |Views: 395

tags: another

[Quick Tip] Session(programming360.blogspot.com)

submitted by syedtayyabalisyedtayyabali(135) 2 years, 8 months ago

During the development of Asp.Net application, developer don't need to instantiate any session. Session is automatically instantiated, you need to use them according to your requirement. Here, I am going to show you one simple example. read more...

add a comment |category: |Views: 15

tags: another

Changing the default conversation factory for uNHAddins(gustavoringel.blogspot.com)

submitted by gustavoringelgustavoringel(15) 2 years, 11 months ago

Advanced usage of uNHAddins conversation for NHibernate read more...

add a comment |category: |Views: 24

tags: another

Detect Browser refresh to avoid events getting fired again in ASP .NET(csharpdotnetfreak.blogspot.com)

submitted by amit.jainamit.jain(904) 3 years, 2 months ago

If you have created a aspx page using C# and ASP.NET and have put a button on it , and in the Click event of this button if you are inserting some data in database , after click if user refresh the page than click event gets fired again resulting data insertion to database again, to stop events on the page getting fired on browser refresh we need to write bit of code to avoid it In this example i've put a Label and a Button on the page, on click the label Text becomes Hello and when i refresh the page label's text again becomes Hello read more...

add a comment |category: |Views: 418

tags: another

Detecting Session Timeout and Redirect to Login Page in ASP.NET(csharpdotnetfreak.blogspot.com)

submitted by amit.jainamit.jain(904) 3 years, 2 months ago

In this example i'll show how to detect the session timeout which occurs when user is idle for the time specified as Session.Timeout,using C# asp.NET and if it is than redirect the user to login page to login again, for this i've set time out value in web.config file to 1 minute I've created three pages in this example , one is login page , when session expires , i redirect to this page , one is navigation page where i'll check if session is valid or not , if it is valid than only user will see this page other wise he gets redirected to login page read more...

add a comment |category: |Views: 768

tags: another

Unable to use Session State Server(blogs.msdn.com)

submitted by tom24tom24(1100) 3 years, 7 months ago

Session state server error due to a setting disabling a header. read more...

add a comment |category: |Views: 21

tags: another

ASP.NET Server SIde State Management - Session State(blogs.microsoft.co.il)

submitted by gilfgilf(2123) 3 years, 7 months ago

The post introduce the session state technique of the ASP.NET server side state management. read more...

add a comment |category: |Views: 59

tags: another

Handling ASP.NET Session Variables Efficiently(codeforeternity.com)

submitted by xtremebizxtremebiz(575) 3 years, 11 months ago

Excellent post which explains how to write bug free and clean code to handle ASP.NET sessions variables efficiently read more...

add a comment |category: |Views: 77

tags: another

How to access an ASP.NET Session object inside a static function (erro(apijunkie.com)

submitted by APIJunkieAPIJunkie(539) 4 years, 1 month ago

If you are trying to access an ASP.NET Session object from inside a static function you will encounter error CS0120 read more...

add a comment |category: |Views: 29

tags: another

SharpCacheSessionManager(aspadvice.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 3 months ago

The SharpCacheSessionManager is a HttpHandler that allows to display the entries stored in the Cache, Session and Application object. You can view the data stored inside the objects and you can also remove the objects from the corresponding storage. read more...

1 comment |category: |Views: 11

tags: another

Best Practices - Fast, Scalable, and Secure Session State Management (msdn.microsoft.com)

submitted by khushal999pkhushal999p(275) 4 years, 5 months ago

Best Practices Fast, Scalable, and Secure Session State Management for Your Web Applications read more...

2 comments |category: |Views: 69

tags: another

Show a Page when Asp.net session expires(geekswithblogs.net)

submitted by kazimanzurrashidkazimanzurrashid(3960) 4 years, 8 months ago

Learn how to show a page when asp,net session expires with one line of code. read more...

add a comment |category: |Views: 79

tags: another

Troubleshooting Session Related Issues in ASP.NET(blogs.msdn.com)

submitted by itzrahulsoniitzrahulsoni(745) 4 years, 11 months ago

In this article I have discussed some of the common reasons for session loss issues in ASP.NET. I have also discussed about how you should think of fixing these issues yourself in a logical way. read more...

1 comment |category: |Views: 9

tags: another

Bury in-proc session state!(ajdotnet.wordpress.com)

submitted by ajdotnetajdotnet(2940) 4 years, 11 months ago

In-proc session state - which is the default session management configuration - does not work! read more...

2 comments |category: |Views: 19

tags: another