English 中文(简体)
萨米用户不能在同一浏览器和同一服务器上打开两个以上的表格。
原标题:Same user can not open application in more than two tab on same browser and same server
  • 时间:2011-11-16 10:19:57
  •  标签:
  • asp.net

My question is same user can not open same application in more than two tabs in same browser and same server. For example , two users of gmail account. first is [email protected] and second is [email protected]. So this both user can not open gmail account in same browser and same server at a time if in internet explorer [email protected] already login and then [email protected] will try for second tab in entenet explorer for login then automatically [email protected] account will open .

I want to provide this functionality in my project. In my project suppose abc.com login and anyone want to login in same browser on same server than he/she can login, so how to restrict them. if i will match server or computer name then is it possible ? Please give me answer for this .

in my application one user abc is login and url path like this "http://localhost:2782/Viewer.aspx" and after he/she open second tab and paste this path in url then secondtime his account will be open, and after in second tab he logout and then again login with differen username like xyz.com then this xyz.com will be open. so my task is in that application is restict the user for can not open same application in same browser in same server.

问题回答

从你的问题来看,这并不十分清楚,但在这里,如果有助于:

<>>A”“用户会议”针对的是每个浏览器窗口,而不是每个浏览器/表。

因此,不可能在同一浏览器窗口中为两个不同的表格开课。

这是浏览器的基本设计特征,是你们的用户所期望的:因此,应当相应地设计应用和使用案例。

你可以限制在同一浏览器中开立几个表格,因为所有表格都有会议。

But you can restrict usage of only one browser, allowing only one user to be logged-in in the same time (uniqueness of session id among the application).





相关问题
Anyone feel like passing it forward?

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. ...

How to Add script codes before the </body> tag ASP.NET

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 ...

Transaction handling with TransactionScope

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 ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

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!