BV Commerce Forum
»
BV Commerce Support
»
General Support
»
Quick Fix: 1 generic user, multiple e-mails??
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
|
|
|
|
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.