Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
J

jo H

@jo H
About
Posts
7
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Framework Version - using 2.0 instead of 3.5
    J jo H

    What is the original source project properties -> Application Framework setting?

    C# csharp dotnet visual-studio help question

  • Framework Version - using 2.0 instead of 3.5
    J jo H

    Are you using any features that are only available in 3.5? LINQ for instance

    C# csharp dotnet visual-studio help question

  • Framework Version - using 2.0 instead of 3.5
    J jo H

    Check your project properties. What does the Application ->Target Framework say? If that still says .NET Framework 3.5, then you know why its not using 2.0

    C# csharp dotnet visual-studio help question

  • ServicePointManager.ServerCertificateValidationCallback
    J jo H

    If you are happy to disable the checking of the certificate (not recommended) then use something like

                    ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(
    

    delegate
    {
    return true;
    });

    If you are using a WebClient for instance, it should go just before you do the call that will connect (i.e. client.UploadFile(), client.UploadValues(), etc)

    C# help question csharp com sysadmin

  • WebClient.UploadFile won't upload the file.
    J jo H

    Your problem is with your PHP code which is looking at the wrong variables. The upload method places the info into $_FILES['file'], not $_FILES['userfile']. Better late than never I suppose.

    C# csharp database help php mysql

  • how do you keep user info in program?
    J jo H

    Have you looked at the Settings of the Project Properties? This is usually where you would store user configuration settings.

    C# question

  • WebBrowser.ScriptErrorsSuppressed = true and self signed certifcates
    J jo H

    With ScriptErrorsSuppressed set to true the display of javascript error dialogs is eliminated. However, this setting results in the blocking of access to all sites that have any kind of certificate issues. With the setting true, the control displays a warning instead of the requested page and it is not possible to move away from it, even though there is supposedly a link to do so. At least, this is what happens for me. With ScriptErrorsSuppressed set to false, a warning dialog appears, and then the site is accessible. However, any javascript errors will generate the error dialogs. Seems to me these are two different issues being covered with a single setting. Any ideas on how one can access these sites with "certificate issues", ideally without the warning dialog, while keeping the ScriptErrorSuppressed set to true with the WebBrowser control? thanks

    C# javascript cryptography help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups