Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > [Framework 1.1] HTTP and HTTPS form in one aspx

Reply
Thread Tools

[Framework 1.1] HTTP and HTTPS form in one aspx

 
 
sebastien.varoteaux@gmail.com
Guest
Posts: n/a
 
      04-13-2006
Hi all,

I have an aspx page which must contains two forms...
I know that it's impossible but my client wants a login form in all
pages...
The login must be secured and all the website can't be in https!
I can not modify action via javascript because the website must be
AA-WCAG compliant (Accessibility).

Is anybody has an idea?

 
Reply With Quote
 
 
 
 
bruce barker \(sqlwork.com\)
Guest
Posts: n/a
 
      04-13-2006
you can have two forms on a page. the asp.net callback model only supports 1
per page, but you can still add a second html form (don't add runat=server)
that posts to a login page.

you other option is to create a login control, and place it on every page.
in this case have your pages inherit from a base page that implements the
login logic.

not sure how you can have a secure login with out https.

-- bruce (sqlwork.com)

<> wrote in message
news: oups.com...
> Hi all,
>
> I have an aspx page which must contains two forms...
> I know that it's impossible but my client wants a login form in all
> pages...
> The login must be secured and all the website can't be in https!
> I can not modify action via javascript because the website must be
> AA-WCAG compliant (Accessibility).
>
> Is anybody has an idea?
>



 
Reply With Quote
 
 
 
 
sebastien.varoteaux@gmail.com
Guest
Posts: n/a
 
      04-27-2006
creating a control which handle login information is a good solution
but...
How can i use HTTPS for the login and HTTP for all the others?

bruce barker (sqlwork.com) a écrit :

> you can have two forms on a page. the asp.net callback model only supports 1
> per page, but you can still add a second html form (don't add runat=server)
> that posts to a login page.
>
> you other option is to create a login control, and place it on every page.
> in this case have your pages inherit from a base page that implements the
> login logic.
>
> not sure how you can have a secure login with out https.
>
> -- bruce (sqlwork.com)
>
> <> wrote in message
> news: oups.com...
> > Hi all,
> >
> > I have an aspx page which must contains two forms...
> > I know that it's impossible but my client wants a login form in all
> > pages...
> > The login must be secured and all the website can't be in https!
> > I can not modify action via javascript because the website must be
> > AA-WCAG compliant (Accessibility).
> >
> > Is anybody has an idea?
> >


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
server side redirect https => https NOT working Axel ASP General 8 04-27-2009 02:02 AM
submit form values from https to http mohan Java 2 12-05-2008 12:15 PM
How do I Force HTTPS when user types HTTP in URL (IIS server, ASPX) Anonieko ASP .Net 1 12-31-2006 11:03 AM
open-uri and HTTPS, or net/https with a redirect jotto Ruby 4 10-02-2006 07:26 AM
adding main.aspx.vb & main.aspx.resx under aspx John M ASP .Net 1 05-29-2005 09:27 PM



Advertisments
 



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