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

Notification

Icon
Error

casti004
#1 Posted : Monday, July 14, 2008 8:31:48 PM(UTC)
casti004

Rank: Member

Joined: 1/18/2008(UTC)
Posts: 50

Hello,

Anyone have a quick fix for this situation?

We have a private store, and my client only wants 1 generic login for all users.

They, however want it to perform as the following: when one user of the group makes an order, they will have to put in their specific e-mail so they will get the order confirmation..

I tried to tell them this was a bad idea...but I'm just the software grunt

Dave
casti004
#2 Posted : Monday, July 14, 2008 11:52:19 PM(UTC)
casti004

Rank: Member

Joined: 1/18/2008(UTC)
Posts: 50

Well....this is really strange but I think it works.
I basically forced the email form to show up even though there is a single user logged in with an already existing email account.
It will send an email to the address filled out on the form....hmmmm

I manipulated the EmailAddressEntry.ascs file as follows:

Imports BVSoftware.BVC5.Core

Partial Class BVModules_Controls_EmailAddressEntry
Inherits System.Web.UI.UserControl

Private _tabIndex As Integer = -1
Public Property TabIndex() As Integer
Get
Return _tabIndex
End Get
Set(ByVal value As Integer)
_tabIndex = value
End Set
End Property

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

Me.Visible = True
If WebAppSettings.ForceEmailAddressOnAnonymousCheckout Then
EmailAddressRequiredFieldValidator.Enabled = True
Else
EmailAddressRequiredFieldValidator.Enabled = False
End If
If Me.TabIndex <> -1 Then
EmailTextBox.TabIndex = Me.TabIndex
End If

End Sub

Public Function GetUserEmail() As String
Return Me.EmailTextBox.Text
End Function
End Class
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