Click here to Skip to main content
15,887,676 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
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 
MasterPageLoad
Dim userId As String = Session("UserID")
        Dim multipleLogin As New Dictionary(Of String, String)()
        multipleLogin = New Dictionary(Of String, String)()
        Application.Lock()
        multipleLogin = DirectCast(Application("MultipleLogin"), Dictionary(Of String, String))
        If (multipleLogin.ContainsKey(userId)) Then
            Response.Output.Write("<script>alert(You have already signed in. Loggin out)</script>")
            Session.Clear()
            Response.Redirect("~/Login.aspx")
        End If

        multipleLogin.Add(userId, Session.SessionID)
        Application("MultipleLogin") = multipleLogin
        Application.UnLock()

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 
Questioncrystal report is not working in server Pin
vikas shukla5-Feb-10 20:29
vikas shukla5-Feb-10 20:29 
AnswerRe: crystal report is not working in server Pin
sashidhar5-Feb-10 20:37
sashidhar5-Feb-10 20:37 
GeneralRe: crystal report is not working in server Pin
vikas shukla5-Feb-10 20:46
vikas shukla5-Feb-10 20:46 
GeneralRe: crystal report is not working in server Pin
sashidhar5-Feb-10 22:05
sashidhar5-Feb-10 22:05 
AnswerRe: crystal report is not working in server Pin
tronix018-Feb-10 21:18
tronix018-Feb-10 21:18 
Questioncode to compare the differences between two html files not the html code just the UI (what we see in browser) Pin
Member 7695425-Feb-10 20:02
Member 7695425-Feb-10 20:02 
Questionhow to get the hierarchy is treeview control Pin
developerit5-Feb-10 19:50
developerit5-Feb-10 19:50 
AnswerRe: how to get the hierarchy is treeview control Pin
sashidhar5-Feb-10 20:25
sashidhar5-Feb-10 20:25 
QuestionAdding Different Classes type in a single project Pin
khKamel5-Feb-10 19:41
khKamel5-Feb-10 19:41 
AnswerRe: Adding Different Classes type in a single project Pin
sashidhar5-Feb-10 20:32
sashidhar5-Feb-10 20:32 
GeneralRe: Adding Different Classes type in a single project Pin
khKamel5-Feb-10 20:33
khKamel5-Feb-10 20:33 
GeneralRe: Adding Different Classes type in a single project Pin
sashidhar5-Feb-10 22:04
sashidhar5-Feb-10 22:04 

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.