Click here to Skip to main content
15,906,816 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Retrieving the connection string from web.confi Pin
Not Active7-Feb-10 19:24
mentorNot Active7-Feb-10 19:24 
QuestionLinkButton and User Control Error Pin
AndyASPVB6-Feb-10 9:04
AndyASPVB6-Feb-10 9:04 
Questiondebugger does not get attached to a site Pin
sanjubaba6-Feb-10 2:54
sanjubaba6-Feb-10 2:54 
AnswerRe: debugger does not get attached to a site Pin
Abhijit Jana6-Feb-10 3:33
professionalAbhijit Jana6-Feb-10 3:33 
AnswerRe: debugger does not get attached to a site Pin
Abhishek Sur6-Feb-10 8:32
professionalAbhishek Sur6-Feb-10 8:32 
GeneralRe: debugger does not get attached to a site Pin
Hesham Amin7-Feb-10 10:05
Hesham Amin7-Feb-10 10:05 
GeneralRe: debugger does not get attached to a site Pin
Abhishek Sur7-Feb-10 10:13
professionalAbhishek Sur7-Feb-10 10:13 
QuestionCan't see localhost web application on custom web browser Pin
Yosh_5-Feb-10 23:47
professionalYosh_5-Feb-10 23:47 
Questionhow do i create website Pin
hi_everybody5-Feb-10 22:35
hi_everybody5-Feb-10 22:35 
AnswerRe: how do i create website Pin
Abhijit Jana5-Feb-10 22:37
professionalAbhijit Jana5-Feb-10 22:37 
AnswerRe: how do i create website Pin
sashidhar5-Feb-10 23:06
sashidhar5-Feb-10 23:06 
GeneralRe: how do i create website Pin
Abhijit Jana5-Feb-10 23:11
professionalAbhijit Jana5-Feb-10 23:11 
GeneralRe: how do i create website Pin
sashidhar5-Feb-10 23:13
sashidhar5-Feb-10 23:13 
QuestionTwice Login Pin
i gr85-Feb-10 21:31
i gr85-Feb-10 21:31 
AnswerRe: Twice Login Pin
Abhijit Jana5-Feb-10 21:46
professionalAbhijit Jana5-Feb-10 21:46 
GeneralRe: Twice Login Pin
i gr85-Feb-10 22:00
i gr85-Feb-10 22:00 
GeneralRe: Twice Login Pin
Abhijit Jana5-Feb-10 22:33
professionalAbhijit Jana5-Feb-10 22:33 
You can. But for that each and every time you have to check with the Database or may be Cached data. You can try like that, Suppose below is your logged in table Structure

M_ID   M_Name  M_Status
101       Abhi    1
102       Raj     1


Now, M_Status ,1 Means these user are logged in. If some other user trying to logged in using same M_ID like 101, you just check your temp DB and and set M_Status=0 and insert a new record as below .
M_ID   M_Name  M_Status
101       Abhi    0
102       Raj     1
101       Jhon    1



Now, who is already logged in ("Abhi") with the same ID ( 101 ) with M_Status=0 is need to be logged off from application.

So, after that table should be like this,
M_ID   M_Name  M_Status
102       Raj     1
101       Jhon    1


Its means, if any point of time any M_Status=0, corresponding user need to be logged off from application.

This is just an idea. You can think on that Smile | :)
GeneralRe: Twice Login Pin
i gr87-Feb-10 21:12
i gr87-Feb-10 21:12 
GeneralRe: Twice Login Pin
Abhijit Jana7-Feb-10 22:56
professionalAbhijit Jana7-Feb-10 22:56 
GeneralRe: Twice Login Pin
i gr88-Feb-10 3:55
i gr88-Feb-10 3:55 
QuestionHow can I use Server.MapPath Pin
masoumeh20105-Feb-10 21:03
masoumeh20105-Feb-10 21:03 
AnswerRe: How can I use Server.MapPath Pin
vikas shukla5-Feb-10 21:10
vikas shukla5-Feb-10 21:10 
GeneralRe: How can I use Server.MapPath Pin
mmdullah7-Feb-10 18:48
mmdullah7-Feb-10 18:48 
AnswerRe: How can I use Server.MapPath Pin
Abhijit Jana5-Feb-10 21:51
professionalAbhijit Jana5-Feb-10 21:51 
AnswerRe: How can I use Server.MapPath Pin
Chetan Patel5-Feb-10 22:01
Chetan Patel5-Feb-10 22:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.