Click here to Skip to main content
15,905,563 members
Home / Discussions / C#
   

C#

 
GeneralRe: Manage a timeout on a ldap connection Pin
Garth J Lancaster13-Mar-17 3:02
professionalGarth J Lancaster13-Mar-17 3:02 
GeneralRe: Manage a timeout on a ldap connection Pin
MarcSchmidtmayer13-Mar-17 3:53
MarcSchmidtmayer13-Mar-17 3:53 
GeneralRe: Manage a timeout on a ldap connection Pin
Garth J Lancaster13-Mar-17 18:04
professionalGarth J Lancaster13-Mar-17 18:04 
GeneralRe: Manage a timeout on a ldap connection Pin
MarcSchmidtmayer13-Mar-17 20:19
MarcSchmidtmayer13-Mar-17 20:19 
AnswerRe: Manage a timeout on a ldap connection Pin
KamranShahid25-Nov-21 21:33
KamranShahid25-Nov-21 21:33 
GeneralRe: Manage a timeout on a ldap connection Pin
Richard Deeming25-Nov-21 21:54
mveRichard Deeming25-Nov-21 21:54 
GeneralRe: Manage a timeout on a ldap connection Pin
Richard MacCutchan25-Nov-21 23:57
mveRichard MacCutchan25-Nov-21 23:57 
GeneralRe: Manage a timeout on a ldap connection Pin
KamranShahid6-Dec-22 4:08
KamranShahid6-Dec-22 4:08 
QuestionHow to set up QuickSharp to run program in separate window? Pin
Member 1297423512-Mar-17 0:59
Member 1297423512-Mar-17 0:59 
GeneralRe: How to set up QuickSharp to run program in separate window? Pin
Richard MacCutchan12-Mar-17 21:45
mveRichard MacCutchan12-Mar-17 21:45 
AnswerRe: How to set up QuickSharp to run program in separate window? Pin
Pete O'Hanlon12-Mar-17 21:50
mvePete O'Hanlon12-Mar-17 21:50 
Questionmicrosoft report viewer simple invoice format code c# Pin
Member 1295109111-Mar-17 18:54
Member 1295109111-Mar-17 18:54 
AnswerRe: microsoft report viewer simple invoice format code c# Pin
Richard MacCutchan11-Mar-17 22:05
mveRichard MacCutchan11-Mar-17 22:05 
AnswerRe: microsoft report viewer simple invoice format code c# Pin
OriginalGriff11-Mar-17 22:29
mveOriginalGriff11-Mar-17 22:29 
AnswerRe: microsoft report viewer simple invoice format code c# Pin
Mycroft Holmes12-Mar-17 14:33
professionalMycroft Holmes12-Mar-17 14:33 
Question.NET Core, .NET Standard: trying to understand Pin
Super Lloyd10-Mar-17 4:01
Super Lloyd10-Mar-17 4:01 
AnswerRe: .NET Core, .NET Standard: trying to understand Pin
Gerry Schmitz10-Mar-17 5:10
mveGerry Schmitz10-Mar-17 5:10 
GeneralRe: .NET Core, .NET Standard: trying to understand Pin
Super Lloyd10-Mar-17 16:02
Super Lloyd10-Mar-17 16:02 
GeneralRe: .NET Core, .NET Standard: trying to understand Pin
Gerry Schmitz10-Mar-17 21:13
mveGerry Schmitz10-Mar-17 21:13 
AnswerRe: .NET Core, .NET Standard: trying to understand Pin
Kevin McFarlane13-Mar-17 6:08
Kevin McFarlane13-Mar-17 6:08 
GeneralRe: .NET Core, .NET Standard: trying to understand Pin
Super Lloyd13-Mar-17 16:41
Super Lloyd13-Mar-17 16:41 
QuestionHow can i solve this Error, i dnt know this error from server or due to my code? Pin
Member 1305063910-Mar-17 0:04
Member 1305063910-Mar-17 0:04 
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. 

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>

AnswerRe: How can i solve this Error, i dnt know this error from server or due to my code? Pin
OriginalGriff10-Mar-17 0:21
mveOriginalGriff10-Mar-17 0:21 
QuestionRe: How can i solve this Error, i dnt know this error from server or due to my code? Pin
Gerry Schmitz10-Mar-17 5:15
mveGerry Schmitz10-Mar-17 5:15 
QuestionHow to review dotnet code Pin
Tridip Bhattacharjee9-Mar-17 21:52
professionalTridip Bhattacharjee9-Mar-17 21:52 

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.