Click here to Skip to main content
15,885,915 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: dropdownlist problem Pin
Kissy1616-Oct-06 0:55
Kissy1616-Oct-06 0:55 
GeneralRe: dropdownlist problem Pin
_AK_16-Oct-06 0:59
_AK_16-Oct-06 0:59 
Questionprogramming a Messenger!!! Pin
amin_behzadi15-Oct-06 23:28
professionalamin_behzadi15-Oct-06 23:28 
AnswerRe: programming a Messenger!!! Pin
Colin Angus Mackay16-Oct-06 0:44
Colin Angus Mackay16-Oct-06 0:44 
QuestionHow to create media file for web page? Pin
subburaj.sabapathy15-Oct-06 23:07
subburaj.sabapathy15-Oct-06 23:07 
AnswerRe: How to create media file for web page? Pin
perlmunger16-Oct-06 5:24
perlmunger16-Oct-06 5:24 
QuestionWeb application with Single Sign On to Intranet (AD) and Extranet (DB) Pin
hart_tse15-Oct-06 22:28
hart_tse15-Oct-06 22:28 
AnswerRe: Web application with Single Sign On to Intranet (AD) and Extranet (DB) Pin
Tad McClellan16-Oct-06 3:43
professionalTad McClellan16-Oct-06 3:43 
1) Turn the NT Auth off in IIS. If this is on, the external users will always get a login.
2) Use Request.LoginIdentity instead. For IntraNet users this should be populated the first time in. If not then tell people to make the site Trusted. If this is empty string then you can redirect them to your login page.

If Request.LogonUserIdentity.Name.ToLower.Length = 0 Or (Request.LogonUserIdentity.AuthenticationType <> "Negotiate" And Request.LogonUserIdentity.AuthenticationType <> "NTLM") Then<br />
'Login is blank so send them to your login page<br />
        Else<br />
            'Login User<br />
End If



GeneralRe: Web application with Single Sign On to Intranet (AD) and Extranet (DB) Pin
hart_tse16-Oct-06 4:31
hart_tse16-Oct-06 4:31 
GeneralRe: Web application with Single Sign On to Intranet (AD) and Extranet (DB) Pin
hart_tse17-Oct-06 15:04
hart_tse17-Oct-06 15:04 
QuestionHow to enable multiselect in grid view Pin
SysJey15-Oct-06 22:03
SysJey15-Oct-06 22:03 
AnswerRe: How to enable multiselect in grid view Pin
_AK_15-Oct-06 22:06
_AK_15-Oct-06 22:06 
AnswerRe: How to enable multiselect in grid view Pin
Akhilesh Yadav15-Oct-06 23:21
Akhilesh Yadav15-Oct-06 23:21 
Questioncombo box control in asp.net 2005 Pin
Deepak the Cool15-Oct-06 21:31
Deepak the Cool15-Oct-06 21:31 
AnswerRe: combo box control in asp.net 2005 Pin
Guffa15-Oct-06 22:59
Guffa15-Oct-06 22:59 
AnswerRe: combo box control in asp.net 2005 Pin
Akhilesh Yadav15-Oct-06 23:33
Akhilesh Yadav15-Oct-06 23:33 
QuestionHow to update and delete data in db using datagrid in ASP.NET Pin
Nandini Sharma15-Oct-06 21:08
Nandini Sharma15-Oct-06 21:08 
AnswerRe: How to update and delete data in db using datagrid in ASP.NET Pin
_AK_15-Oct-06 21:19
_AK_15-Oct-06 21:19 
GeneralRe: How to update and delete data in db using datagrid in ASP.NET Pin
Nandini Sharma16-Oct-06 3:16
Nandini Sharma16-Oct-06 3:16 
GeneralRe: How to update and delete data in db using datagrid in ASP.NET Pin
_AK_16-Oct-06 18:38
_AK_16-Oct-06 18:38 
GeneralRe: How to update and delete data in db using datagrid in ASP.NET Pin
Nandini Sharma16-Oct-06 19:45
Nandini Sharma16-Oct-06 19:45 
GeneralRe: How to update and delete data in db using datagrid in ASP.NET Pin
_AK_16-Oct-06 20:04
_AK_16-Oct-06 20:04 
GeneralRe: How to update and delete data in db using datagrid in ASP.NET Pin
Nandini Sharma17-Oct-06 19:41
Nandini Sharma17-Oct-06 19:41 
GeneralRe: How to update and delete data in db using datagrid in ASP.NET Pin
_AK_17-Oct-06 20:21
_AK_17-Oct-06 20:21 
GeneralRe: How to update and delete data in db using datagrid in ASP.NET Pin
prakash_21017-Oct-06 1:02
prakash_21017-Oct-06 1:02 

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.