PC Review


Reply
Thread Tools Rate Thread

ASP.NET run-time error: ASP.NET ADO User Registered Failure

 
 
Matthew Louden
Guest
Posts: n/a
 
      11th Oct 2003
I guess this is more likely the user problem, but don't know how to fix. For
regular server-side programs without using data access or ADO, there is no
run-time error. I really have no idea why it doesn't work.

any ideas? Thanks!

Exception Details: System.Data.SqlClient.SqlException: User
'MYComputerName\ASPNET' Registered Failure.

Source Error:


Line 35: Dim cs As String = "Data Source=MyComputerName\MySQL; _
Integrated Security=SSPI;Persist Security Info=False;Initial
Catalog=autoattendant;Trusted_Connection=yes"
Line 36: Dim cn As New SqlConnection(cs)
Line 37: cn.Open()
Line 38: Response.Write("string = " & cn.ConnectionString)
Line 39: End Sub


 
Reply With Quote
 
 
 
 
steve
Guest
Posts: n/a
 
      11th Oct 2003
you need to add ASPNET as a user of the sql server database instance you are
trying to access. if you're using msde, you can execute the following to add
the user.

hth,

steve



if not exists (select * from master.dbo.syslogins where loginname =
n'[[INSTANCE_NAME]]\ASPNET')
exec sp_grantlogin n'[[INSTANCE_NAME]]\ASPNET'
exec sp_defaultdb n'[[INSTANCE_NAME]]\ASPNET', n'master'
exec sp_defaultlanguage n'[[INSTANCE_NAME]]\ASPNET', n'us_english'

if not exists (select * from master.dbo.syslogins where loginname =
n'[[INSTANCE_NAME]]\ASPNET'] and uid < 16382)
exec sp_granddbaccess n'[[INSTANCE_NAME]]\ASPNET',
n'[[INSTANCE_NAME]]\ASPNET'

exec sp_addrolemember n'db_datareader', n'[[INSTANCE_NAME]]\ASPNET'
exec sp_addrolemember n'db_datawriter', n'[[INSTANCE_NAME]]\ASPNET'
exec sp_addrolemember n'db_owner', n'[[INSTANCE_NAME]]\ASPNET'




"Matthew Louden" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> I guess this is more likely the user problem, but don't know how to fix.

For
> regular server-side programs without using data access or ADO, there is no
> run-time error. I really have no idea why it doesn't work.
>
> any ideas? Thanks!
>
> Exception Details: System.Data.SqlClient.SqlException: User
> 'MYComputerName\ASPNET' Registered Failure.
>
> Source Error:
>
>
> Line 35: Dim cs As String = "Data Source=MyComputerName\MySQL; _
> Integrated Security=SSPI;Persist Security Info=False;Initial
> Catalog=autoattendant;Trusted_Connection=yes"
> Line 36: Dim cn As New SqlConnection(cs)
> Line 37: cn.Open()
> Line 38: Response.Write("string = " & cn.ConnectionString)
> Line 39: End Sub
>
>



 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Run time error - class not registered =?Utf-8?B?a2ZhbmN5cGFudHM=?= Windows XP General 3 16th Feb 2007 06:44 AM
WMI Failure: Class not Registered Curtis Windows XP WMI 0 27th Jun 2004 05:22 AM
find failure stops macro with run time error Microsoft Excel Worksheet Functions 2 7th May 2004 03:00 PM
ASP.NET run-time error: ASP.NET ADO User Registered Failure Matthew Louden Microsoft ADO .NET 1 11th Oct 2003 07:58 PM
ASP.NET run-time error: ASP.NET ADO User Registered Failure Matthew Louden Microsoft ASP .NET 1 11th Oct 2003 07:58 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:32 PM.