"Unable to connect to SQL Server database" error when using profile

P

Peter Afonin

Hello,

I'm using CreateUserWizard control in ASP.NET 2.0. I'm storing the data in
SQL Server 2005.

The first and last steps run smoothly without any problems. But I added one
middle step to collect some other information from the user. I've added this
to Web.config:

<profile>
<properties>
<add name="FirstName" />
<add name="LastName" />
<add name="Country" />
<add name="City" />
<add name="Email2" />
</properties>
</profile>

Then I try to collect this data:

Protected Sub cuzGudzon_FinishButtonClick(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.WizardNavigationEventArgs) Handles
cuzGudzon.FinishButtonClick
Try
With Profile
..FirstName = Me.txtFirstName.Text
..LastName = Me.txtLastName.Text
..Country = Me.txtCountry.Text
..City = Me.txtCity.Text
..Email2 = Me.txtEmail2.Text
End With
Catch ex As Exception
Me.lblError.Text = ex.Message
Finally
End Try
End Sub

This is where I get an error: Unable to connect to SQL Server database

Aparently, the connection string I specified in Web.config is correct, since
the first step where the user creates a user name and password runs without
any problems, and the data is entered into the database. Am I missing
something in this additional step?

I would appreciate your help.

Thank you,
 
C

Cowboy \(Gregory A. Beamer\)

Make sure you have set up the Profile to use the proper connection string.
Membership and Profile are two completely separate sections in the
web.config. Same is true for Roles. While this may seem counter intuitive,
the reason for this is flexibility, as you might want to include the default
membership, but custom profile and role providers. You can do this with a
simple config change (and code to support the custom elements, of course).
 
P

Peter Afonin

Thank you, Gregory,

This was a main problem - I couldn't find any example on how to do this.
Finally figured this out:

<profile defaultProvider="GudzonProfileProvider">
<providers>
<add name="GudzonProfileProvider"
type="System.Web.Profile.SqlProfileProvider" connectionStringName="Gudzon"/>
</providers>
<properties>
<add name="FirstName" />
<add name="LastName" />
<add name="Country" />
<add name="City" />
<add name="Email2" />
</properties>
</profile>

Peter



Cowboy (Gregory A. Beamer) said:
Make sure you have set up the Profile to use the proper connection string.
Membership and Profile are two completely separate sections in the
web.config. Same is true for Roles. While this may seem counter intuitive,
the reason for this is flexibility, as you might want to include the
default membership, but custom profile and role providers. You can do this
with a simple config change (and code to support the custom elements, of
course).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top