Asp.net Forms Authentication With Android Browser
I'm using ASP.NET Forms Authentication with a simple way. The authentication use a cookie for store the credentials. Works perfectly in browsers like: Desktop: Chrome, Safari, IE,
Solution 1:
The reason is the Response.End(). That function prematurely kills your stream of data. There is no need for it at all.
Different browsers handle the Response.End() in different ways. Some will render the page even though you ended the stream, and some will not render it.
Post a Comment for "Asp.net Forms Authentication With Android Browser"