CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML

Free Download:




Zone: > NEWSGROUP > Asp.Net Forum > visual_studio.visual_web_developer_2005_express Tags:
Item Type: NewsGroup Date Entered: 3/27/2005 6:03:13 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 7 Views: 28 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
8 Items, 1 Pages 1 |< << Go >> >|
blahhumbug
Asp.Net User
Add new provider option missing3/27/2005 6:03:13 AM

0/0

In the ASP.NET Configuration Provider page, there is no longer a way to add a new provider ?!? Is there a new / different way to configure SQL Server 2005 Express as the membership provider?

Thanks,
Sam

Fredrik N
Asp.Net User
Re: Add new provider option missing3/27/2005 7:22:59 AM

0/0

Take a look at this post on my blog...
/Fredrik Norm?n NSQUARED2
Microsoft MVP, MCSD, MCAD, MCT

Cornerstone

My Blog, ASP.Net 2.0 etc
blahhumbug
Asp.Net User
Re: Add new provider option missing3/27/2005 4:58:59 PM

0/0

I had actually seen your post before posting my question above. It does not provide much in the way of tangible help. The connection string in the post in incomplete; it worked after I added Server= to the beginning, making it Server=./SQLEXPRESS (...) and removed the User Instance=true param.

I have installed the VWD and SSE February CTP editions (.net 2.0.50110) on a clean Win XP SP 2 machine. Both installed without a problem.

I am trying to implement the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsse/html/VWD_SSE.asp">solution</a> that Dan Burman outlines in his three part series on working with VWD and SSE, the StudentActivities application.

When I go to the ASP.NET Configuration admin pages, there is no option for AspNetSqlProvider that I can configure. If I choose the "use different providers" option, I can see the AspNetSqlMembershipProvider and AspNetSqlRoleProvider options, but clicking test fails.

I modified the LocalSqlServer key in the connectionStrings section of the machine.config to look like this
&gt;add name="LocalSqlServer" connectionString="Server=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;" providerName="System.Data.SqlClient"/&lt;

which generated a "SQLExpress database file auto-creation error" message when I clicked the test link. Then I created the aspnetdb.mdf file in my project's App_Data folder. After that the connection succeeded in the admin tool. However, when I click on the security tab, I get this error.

Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'

So, the question remains....

How do you configure VWD to use SSE as the membership data store?!? Is the membership feature undergoing massive changes and I should not bother with it right now?

Thanks,
Sam

wahyu
Asp.Net User
Re: Add new provider option missing5/2/2005 3:57:28 PM

0/0

have you been able to finish the tutorial or add the provider in the web admin tool ? this is really bad, it should be easy how they discribe a development using web developer express and sql express, but i've been trying for 3 days and i can not fix the problem at all.
blahhumbug
Asp.Net User
Re: Add new provider option missing5/3/2005 1:24:33 PM

0/0

Which version of Visual Studio are you using? I upgraded to VS.net 2005 beta 2 and everything seems to be working now, though I haven't actually finished the tutorial. I am able to configure the SqlProvider.



wahyu
Asp.Net User
Re: Add new provider option missing5/3/2005 2:41:10 PM

0/0

I'm using Microsoft Visual Web Developer 2005   (beta 2.050215-4400). i've heard that the tutorial from Dan Burman (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsse/html/VWD_SSE.asp) is not for the VWD beta 2, is that correct ?
But anyway, i still can not find the add provider button anywhere in the web admin tool. if you have any solution, it would be great.

thanks

blahhumbug
Asp.Net User
Re: Add new provider option missing5/6/2005 1:31:24 PM

0/0

The Burman tutorial was written before beta 2 came out. It actually states that it was "based on the May 2004 Alpha release of Visual Web Developer 2005 Express Edition and SQL Server 2005 Express Edition Technical Preview".

I imagine that the provider options have changed. In the latest version that I'm using, VS.net 2005 beta 2, there is not a Add Provider option either; however, the AspNetSqlProvider is there and works, which is was not the case with beta 1.

Do you not have that option?

Sam
Rupert_Stanton
Asp.Net User
Re: Add new provider option missing5/15/2005 10:24:29 PM

0/0

Had the same problem and the code below works for me(put it in the appropriate sections of web.config). The basis for it was the default providers in machine.config (the password additions make life much easier).

This link has been the most useful to me in explaining the new concepts and details in SQL Express http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsse/html/sseoverview.asp it had a lot of stuff I needed to know.

John

----------------------Beta 2---------------------------

<connectionStrings>

<add name="MyDataConnection" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|MySQLDatabase.mdf;User Instance=true" providerName="System.Data.SqlClient"/>

</connectionStrings>

------------------------------------------------

<membership>

<providers>

<remove name="AspNetSqlMembershipProvider" />

<add name="AspNetSqlMembershipProvider"

type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"

connectionStringName="MyDataConnection"

minRequiredPasswordLength="4"

minRequiredNonalphanumericCharacters="0"

enablePasswordRetrieval="false"

enablePasswordReset="true"

requiresQuestionAndAnswer="true"

applicationName="/"

requiresUniqueEmail="false"

passwordFormat="Hashed"

maxInvalidPasswordAttempts="5"

passwordAttemptWindow="10"

passwordStrengthRegularExpression="" />

</providers>

</membership>

<profile>

<providers>

<remove name="AspNetSqlProfileProvider" />

<add name="AspNetSqlProfileProvider" connectionStringName="MyDataConnection" applicationName="/"

type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

</providers>

</profile>

<roleManager enabled="true">

<providers>

<remove name="AspNetSqlRoleProvider" />

<add connectionStringName="MyDataConnection" applicationName="/"

name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

</providers>

</roleManager>

8 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Windows Vista for Starters: The Missing Manual Authors: David Pogue, Pages: 408, Published: 2007
Dreamweaver MX 2004: The Missing Manual Authors: David Sawyer McFarland, David Pogue, Pages: 836, Published: 2004
Mac OS X, Tiger Edition: The Missing Manual Authors: David Pogue, Pages: 847, Published: 2005
A+ Certification All-in-One Exam Guide Authors: Michael Meyers, Scott Jernigan, Pages: 1184, Published: 2003
QuickBooks 2008: The Missing Manual Authors: Bonnie Biafore, Pages: 703, Published: 2007
How to Cheat at Managing Microsoft Operations Manager 2005 Authors: Tony Pitzecker, Michael Cross, Pages: 467, Published: 2006
QuickBooks 2006: The Missing Manual Authors: Bonnie Biafore, Pages: 608, Published: 2006
Office X for Macintosh: The Missing Manual: The Missing Manual Authors: Nan Barber, Tonya Engst, David Reynolds, Pages: 728, Published: 2002
Absolute Beginner's Guide to Windows XP Media Center Authors: Steve Kovsky, Pages: 408, Published: 2004
MPLS-Enabled Applications: Emerging Developments and New Technologies Authors: Ina Minei, Julian Lucek, Pages: 526, Published: 2008

Web:
Missing from Out of Home Care The Provider’s address will automatically be inserted on the Address tab of the person ... Create a new Service Category of: "Missing From Out-of-Home Care“ ...
MSDN Visual Basic General Data Adapter Configuration Wizard ... Data Adapter Configuration Wizard missing some options. I am using Visual Basic. NET 2003. When I try to create a new connection through the Data Adapter ...
ATutor: Forums: Missing links after new install, etc Adding index.php to the links missing them should fix the problem, but you should mention this to your provider, so the server can be set to ...
Adding provider taxonomy – HIPAA Requirement Are you adding 'Physicians' as a new PERSON CLASS (the 1ST for this NEW PERSON ... The user has the option to enter another provider taxonomy. ...
Image Upload Tab Missing - FCKeditor Provider [Lead: Mauricio ... We disable that option in the last release because it was confusing ... Then I re-set the default upload directory to the new folder and all ...
Office Management Systems Behavioral Health Software Download and ... Once this information is complete, click on the “Add Provider Number” button. ... of the scan in the box above Add New Scan Type and then click the button. ...
Calendar:GDATA Provider - MozillaWiki You may now use this url as the Location in the new remote calendar wizard. ... Missing Features. Why can't I configure any options in the Extension Manager ...
How Do I: Create a Custom Profile Provider? Missing something in ... How Do I: Create a Custom Profile Provider? What am I missing in this C# example .... TechNet Edge: What’s New in Conferencing with Office ...
Nabble - firebird-net-provider - Example from Mono - FirebirdSql ... Are you missing an assembly reference. I have tried to compile the example from ... Add(new Charset(44, "KSC_5601", 2, "ks_c_5601-1987")); ...
(Solved) Add new network card missing Dll's - Tech Support Guy Forums Trying to add a new network card to my computer. ... the same for the modem and ip provider has security features that identify the net bios ...

Videos:
Charlie Rose - Chambers, Hennessy, Schwartz, Sclavos, Doerr, Dyson Segment 1: A view from Silicon Valley with John Chambers, President & CEO of Cisco Systems, John Hennessy, President of Stanford University, Jonatha...
Zero Configuration networking with Bonjour Google TechTalks November 2, 2005 Dr. Stuart Cheshire, Apple Computer http://www.stuartcheshire.org/ ABSTRACT The desirability of making IP networ...
Zeitgeist 2 : Addendum - Subtitles English / French Zeitgeist: Addendum, by Peter Joseph 2008 English Subtitles ! French See ya later on thezeitgeistmovement.com You can Download Srt file here : EN:...




Search This Site:










is there a function which can add a user to a role in asp.net ?

relative sizes & tabstrip

linking to files

how to protect folder 0 ?

html textvariable to text

roles and name in security..

master pages - cannot place content placeholder side by side

how to access form collection

walkthrough: creating and using asp.net master pages in visual web developer

dropdown list selecteditem.value not seen because of nchar(10) datatype wrong type?

secure a webstie using sessions

3.0.9 bug?: publish date ommitted in announcements module

v web 2008 install issue

up and running?

discussion board problem can't enter new thread

files download instead of getting viewed. application/octet-stream

extended club starter kit and navigation buttons for logged in viewer

uploading large files using asp.net applications

tcpclient and securityexception

webpart to display analysis services olap cubes

dynamic content scroller (sql connected)

starter kit is not working

adding a user to a role without using the aspconfig page

dotfuscation

errors after including master pages

asppage

send to back

dnn3.0.8 on godaddy hosting

vsts developer - testing question

sitemap,,treeview and how to hide nodes

 
All Times Are GMT