I m使用ASP进行配对。 净表格认证。 客户还向服务器(外商号部件在前端)打电话。
我们正在使用HttpHandler习俗接通服务电话。
我的问题是,在任何时间,认证 co子在我HttpHandler的加工方法到期时,都要求我检查 co的缺席情况,并指示用户再次登录。
一个实例是用户留下一个开放的网页,然后在20个雷区上回来,并点击了装 as的下降。 我的 app子永远不会去掉。
任何想法?
I m使用ASP进行配对。 净表格认证。 客户还向服务器(外商号部件在前端)打电话。
我们正在使用HttpHandler习俗接通服务电话。
我的问题是,在任何时间,认证 co子在我HttpHandler的加工方法到期时,都要求我检查 co的缺席情况,并指示用户再次登录。
一个实例是用户留下一个开放的网页,然后在20个雷区上回来,并点击了装 as的下降。 我的 app子永远不会去掉。
任何想法?
高度建议阅读本MSDN杂志文章中题为“管道活动模式”的章节:中,安全地实施与吉大港山区管道有关的申请处理、过滤和内容转移。
具体来说,在将申请提交至<编码>ProcessRequest(之前,认证在您的HttpHandler进行。 如果你需要处理这些案件,那么你就需要了解管道事件(如BeginRequest或Athenticate Request),并增加你自己的操作员,如:
public class EnableWebServicesModule :
IHttpModule
{
public void Init(HttpApplication app)
{
// register event handler
app.BeginRequest += new EventHandler(this.OnBeginRequest);
}
public void OnBeginRequest(object obj, EventArgs ea)
{
// Check if security works here by looking for the cookie or
// the user context.
}
...
}
In my webpages I have references to js and images as such: "../../Content/Images/"Filename" In my code if I reference a file as above, it doesnt work so i have to write: "c:/miscfiles/"filename" 1-...
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...
I m looking for best practices here. Sorry. I know it s subjective, but there are a lot of smart people here, so there ought to be some "very good" ways of doing this. I have a custom object called ...
I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...
i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...
For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?
I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!