single instance of a Web applicaiton.
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
If only one person could access it at a time, why would you make it a web application?? I would prefer a win app :confused: May be a singleton approach could work.. never used it thou..
I was born dumb!! :laugh:Programming made me laugh:laugh:!!! --sid--
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
Strange. What is the point of web application then ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
try to use an application variable,
When you get mad...THINK twice that the only advice Tamimi - Code
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
There is always only a single instance of the web application running, regardless of the number of users, so what you are asking for would not help you at all. What you need to do is to have some kind of login so that you can identify the user, and add a limitation in the login so that only one user can be logged in at a time.
Despite everything, the person most likely to be fooling you next is yourself.
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.
Do this: 1. Have a table with column named logged 2. When user1 has logged in fill column with value e.g. 1 3. If user2 tries to log in check if there is a value in the column 4. if so dont let user log in 5. When user 1 logs out clear column.
We are not a Code Charity
-
Hi, I am working on web applicaiton. I have uploaded the application on server but I want only one person can access the applicaiton at a time. In other words I want only a single instance of my applicaiton running at a time.Remember I am on web applicaiton not window applicaiton.