SSL and ASP.net questions

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default SSL and ASP.net questions

    I have a couple of SSL questions.
    First:
    If I would like to protect my entire website by ensuring that all pages are
    accessed using SSL ([url]https://)[/url]
    How would I force that? Would that be an ASP.net config thing, or a
    configuration in IIS?

    Second:
    If I would only like specific pages protected using SSL, but I do _not_ want
    to lost my session between
    secure and unsecure requests, is there a way to do that? Can it be
    accomplished using Server.Transfer or
    something?

    Oh, and if possible, .Net 1.0 answers would be helpful, but 1.1 is ok too :)

    Any help would be appreciated. THanks

    -Clint


    Cliff Harris Guest

  2. Similar Questions and Discussions

    1. AMD-64 Questions
      Hi All: Newbie w/ some questions: PC: AMD-64 bit, full install working reasonably well (no attempts at multi-media yet): w/ Athlon AMD-64...
    2. Mac OS-10 & MX questions / Please Help!
      A couple of questions: 1. I am getting a Mac with OS10 running Director MX. If I create a projector, will it run on older OS systems? 2. Which...
    3. 2 questions
      For an example of how to use the SysCmd, open the Northwind sample database, and look in the Utility module. They have a wrapper function named...
    4. The questions.
      "Chris Thomas" <chrisvai777@hotmail.com> wrote in message news:9f682ea7.0307210257.5a2a89a1@posting.google.com... It depends on what drives you...
    5. 2 questions :) - portal questions
      Say the portal displays a relationship that uses the Box_ID field as the match field on both sides. In the child file (items in the box), add two...
  3. #2

    Default SSL and ASP.net questions

    Hi,

    First off all, you need to setup the SSL option in IIS,
    and also create one certificate for this.
    Then let the peoples download and install this
    Certificate on there server. You can buy one certificate
    that is compatible with one of them in IE.
    Second:
    No you can't get your sessions in the different modes.
    What I remember, I'm not sure how the InProc mode work,
    Se Session settings in Web.Config,
    But you can jump from SSL secure pages to none SSL secure
    pages without any problem.

    JN
    >-----Original Message-----
    >I have a couple of SSL questions.
    >First:
    >If I would like to protect my entire website by ensuring
    that all pages are
    >accessed using SSL ([url]https://)[/url]
    >How would I force that? Would that be an ASP.net config
    thing, or a
    >configuration in IIS?
    >
    >Second:
    >If I would only like specific pages protected using SSL,
    but I do _not_ want
    >to lost my session between
    >secure and unsecure requests, is there a way to do
    that? Can it be
    >accomplished using Server.Transfer or
    >something?
    >
    >Oh, and if possible, .Net 1.0 answers would be helpful,
    but 1.1 is ok too :)
    >
    >Any help would be appreciated. THanks
    >
    >-Clint
    >
    >
    >.
    >
    Johan Normén NSQAURED2 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139