Click here to Skip to main content
15,909,953 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionProblem in sorting Datagrid Pin
happyheartcs16-Oct-06 0:46
happyheartcs16-Oct-06 0:46 
AnswerRe: Problem in sorting Datagrid Pin
_AK_16-Oct-06 1:11
_AK_16-Oct-06 1:11 
AnswerRe: Problem in sorting Datagrid Pin
VishalSharmaDev16-Jan-07 5:38
VishalSharmaDev16-Jan-07 5:38 
Questionmy xml file Pin
ahmadnaghsh16-Oct-06 0:43
ahmadnaghsh16-Oct-06 0:43 
QuestionAdding thousands separators to numbers in GridView Pin
Mohamed El Gohary15-Oct-06 23:56
Mohamed El Gohary15-Oct-06 23:56 
AnswerRe: Adding thousands separators to numbers in GridView Pin
_AK_16-Oct-06 0:48
_AK_16-Oct-06 0:48 
GeneralRe: Adding thousands separators to numbers in GridView Pin
Mohamed El Gohary16-Oct-06 0:54
Mohamed El Gohary16-Oct-06 0:54 
GeneralRe: Adding thousands separators to numbers in GridView Pin
_AK_16-Oct-06 0:57
_AK_16-Oct-06 0:57 
Questiondropdownlist problem Pin
Kissy1615-Oct-06 23:38
Kissy1615-Oct-06 23:38 
AnswerRe: dropdownlist problem Pin
_AK_16-Oct-06 0:34
_AK_16-Oct-06 0:34 
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 

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.