SSL forms

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • VK

    SSL forms

    Hi,

    A form is being called on many different pages(VB.NET). We have to now
    make the form as HTTPS, since some sensitive information is being
    collected on form. I tried creating a meta refresh tag on form1.aspx as
    is
    <meta http-equiv="refresh"
    content="0;http s://<www.myurl.co m>/form/form1.aspx"> but that doesn't
    seem to be working - any ideas?
    Many thanks.


    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!
  • Patrice

    #2
    Re: SSL forms

    Try :
    10;url=https:// etc...

    (url keyword missing). Also why 0µ. It could be also annying if someone
    enters osmething and it fires (what is the reason for refreshing ?)...

    Patrice


    --

    <VK> a écrit dans le message de
    news:u$ukAeAzEH A.3820@TK2MSFTN GP11.phx.gbl...[color=blue]
    > Hi,
    >
    > A form is being called on many different pages(VB.NET). We have to now
    > make the form as HTTPS, since some sensitive information is being
    > collected on form. I tried creating a meta refresh tag on form1.aspx as
    > is
    > <meta http-equiv="refresh"
    > content="0;http s://<www.myurl.co m>/form/form1.aspx"> but that doesn't
    > seem to be working - any ideas?
    > Many thanks.
    >
    >
    > *** Sent via Developersdex http://www.developersdex.com ***
    > Don't just participate in USENET...get rewarded for it![/color]


    Comment

    • VK

      #3
      Re: SSL forms

      thanks for reply.

      Reason for refreshing - so that form page from http:// shows ups as
      https://

      All the other pages that reference this form are linked as http:// -
      this way i have to change only this form page.



      *** Sent via Developersdex http://www.developersdex.com ***
      Don't just participate in USENET...get rewarded for it!

      Comment

      • Patrice

        #4
        Re: SSL forms

        Ah ok. The other option would be to have the page checking its own protocol
        and redirecting itself to the same page using https...

        Patrice

        --

        <VK> a écrit dans le message de
        news:%23ZCb2sBz EHA.3820@TK2MSF TNGP11.phx.gbl. ..[color=blue]
        > thanks for reply.
        >
        > Reason for refreshing - so that form page from http:// shows ups as
        > https://
        >
        > All the other pages that reference this form are linked as http:// -
        > this way i have to change only this form page.
        >
        >
        >
        > *** Sent via Developersdex http://www.developersdex.com ***
        > Don't just participate in USENET...get rewarded for it![/color]


        Comment

        • VK

          #5
          Re: SSL forms


          how would we do that?

          The refresh meta tag requires a we specify seconds it should be
          refreshed in and since this is a long form it is not a good idea to do
          that. How do refresh a page with https protocol?

          Many thanks

          *** Sent via Developersdex http://www.developersdex.com ***
          Don't just participate in USENET...get rewarded for it!

          Comment

          Working...