• Toll-free  888-665-8637
  • International  +1 717-220-0012
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

sternyy
#1 Posted : Monday, February 16, 2009 5:14:53 PM(UTC)
sternyy

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.
bvcoder
#2 Posted : Tuesday, February 17, 2009 5:21:02 AM(UTC)
bvcoder

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
Aaron
#3 Posted : Tuesday, February 17, 2009 11:50:24 AM(UTC)
Aaron

Rank: Administration

Joined: 4/2/2004(UTC)
Posts: 2,393
United States
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
Matt@9BallDesign
#4 Posted : Tuesday, February 17, 2009 12:34:34 PM(UTC)
Matt@9BallDesign

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.
Matt Martell


http://www.9balldesign.com - Web, Print, Graphic


http://www.martellhardware.com/ - Decorative & Builder's Hardware

------------------------------------------------
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.

©2024 Develisys. All rights reserved.
  • Toll-free  888-665-8637
  • International  +1 717-220-0012