Rank: Member
Joined: 1/10/2005(UTC) Posts: 714
Thanks: 14 times Was thanked: 1 time(s) in 1 post(s)
|
I want to create a financing application online. One of the requirements is a SSN. I already can create any contact form on a custom page. Can i simply add https to my link to make it secure, or do I have to also do something total diffferent.
|
|
|
|
Rank: Member
Joined: 8/1/2007(UTC) Posts: 310
|
Hello Bryan,
Ideally that is sufficient but you may want to force this page to be on a secure connection always. You can establish that by writing a custom http handler which checks for the page being requested and redirect to a secure connection if not already on a secure connection. Is this a BV store or your custom store? |
Thanks, Satya support @ bayquel.net Work: +1 803 883 3226 |
|
|
|
Rank: Administration
Joined: 4/2/2004(UTC) Posts: 2,393 Location: Hummelstown, PA Thanks: 6 times Was thanked: 163 time(s) in 158 post(s)
|
Bryan, Keep in mind that for this to be secure you cannot email the SSN. You will need to store the SSN's in a database somewhere. Below is a code snippet you can insert into your page's Page_Load function that will force the page to always use SSL. Code: If !Request.IsSecureConnection Then Dim secureUrl As String = Uri.UriSchemeHttps + Uri.SchemeDelimiter + Request.Url.Host + Request.Url.PathAndQuery Response.StatusCode = 301 Response.AddHeader("Location", secureUrl) Response.End() End If
|
Aaron Sherrick BV Commerce Toll-free 888-665-8637 - Int'l +1 717-220-0012 |
|
|
|
Rank: Member
Joined: 12/23/2003(UTC) Posts: 909
|
Hey Bryan, not sure if you're using a 3rd party for financing? Some offer a canned application form that you can usually customize the header and footer and you can send them a logo and they'll send you the correct link to use. |
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.