Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Can't connect to DB

    Hi!

    I am trying to open a connection to a SQL Server database
    using just the Framework, Notepad and the browser. I keep
    getting the error message "SQL Server does not exist or
    access is denied."

    I am using the following for the connection:

    Dim conPubs As SqlConnection
    ConPubs = New SqlConnection ("Data
    Source=localhost;Initial Catalog=PUBS;Integrated
    Security=SSPI;")
    ConPubs.Open()

    In Page_Load of the script. I can take the same notepad
    aspx page and put it into Visual Studio .NET and it
    connects without a problem.

    I'm using Windows Server 2003 and my SQL Server 2000 is
    set up with windows authentication. I am not on a
    network - just studying this stuff on my home computer.

    THIS IS DRIVING ME CRAZY! I have read many many pages on
    security and nothing seems to be giving me what I need. I
    would guess on some level there is probably some stupid
    little box that has to be checked or unchecked . . . Where
    ever that could be . . .

    Any help anyone can give me will be immensely appreciated!

    Sandy

    Sandy Guest

  2. Similar Questions and Discussions

    1. i want to use connect old again.
      i am doing chat application,when network failed it can not connect to FMS2, so i can not chat, but when network have got a gain, why I can not chat?...
    2. FCS connect
      Hi Guys, I have a little issue with my connection. i am running my CCTV through my FlashComm Server and I have to start my broadcast manually....
    3. Help Cant Connect?
      I just simply want to connect to my webpage. I already have a website but then it asks me my network path? I dont even know what that is...I have...
    4. How to use “RDS.Connect” to connect to a MS Access database?
      The example I am working from uses the following code which does not work: RDS.Connect = "Provider='sqloledb';Integrated Security='SSPI';Initial ...
    5. cannot connect to DB from ASP.Net app
      Hi, from a WinForms-app do I connect to a DB using a connectionstring : m_sqlConnection.ConnectionString = " workstation id=\"PC-WIN2000\";...
  3. #2

    Default Re: Can't connect to DB

    Hi,
    have you tried with this connection string?
    "Data Source=local;Initial Catalog=PUBS;Integrated Security=SSPI;"

    I changed the "Data Source=localhost" with "Data Source=local".

    Andrea

    "Sandy" <anonymous@discussions.microsoft.com> wrote in message
    news:0a5001c39811$47c00b60$a001280a@phx.gbl...
    > Hi!
    >
    > I am trying to open a connection to a SQL Server database
    > using just the Framework, Notepad and the browser. I keep
    > getting the error message "SQL Server does not exist or
    > access is denied."
    >
    > I am using the following for the connection:
    >
    > Dim conPubs As SqlConnection
    > ConPubs = New SqlConnection ("Data
    > Source=localhost;Initial Catalog=PUBS;Integrated
    > Security=SSPI;")
    > ConPubs.Open()
    >
    > In Page_Load of the script. I can take the same notepad
    > aspx page and put it into Visual Studio .NET and it
    > connects without a problem.
    >
    > I'm using Windows Server 2003 and my SQL Server 2000 is
    > set up with windows authentication. I am not on a
    > network - just studying this stuff on my home computer.
    >
    > THIS IS DRIVING ME CRAZY! I have read many many pages on
    > security and nothing seems to be giving me what I need. I
    > would guess on some level there is probably some stupid
    > little box that has to be checked or unchecked . . . Where
    > ever that could be . . .
    >
    > Any help anyone can give me will be immensely appreciated!
    >
    > Sandy
    >

    Andrea D'Onofrio Guest

  4. #3

    Default Re: Can't connect to DB

    Hi Andrea!

    Thanks for replying.

    I did find out what the problem was from Chris at
    the .framework.adonet site. Turns out there were two
    things wrong - I had to:

    1. Switch off anonymous access on Directory Security tab
    in IIS (the I_User part), click okay.
    Go back to Directory security. It now reads "Use the
    following Windows user account . . . with reference to the
    Windows user name and password. Check box in front of
    Enable Anonymous Access.
    2. Insert <identity impersonate="true" /> in xml page.

    Thought I would include this in case you come across it in
    the future, you can pass the word on to dummies like me.

    Thanks again.

    Sandy
    >-----Original Message-----
    >Hi,
    >have you tried with this connection string?
    >"Data Source=local;Initial Catalog=PUBS;Integrated
    Security=SSPI;"
    >
    >I changed the "Data Source=localhost" with "Data
    Source=local".
    >
    >Andrea
    >
    >"Sandy" <anonymous@discussions.microsoft.com> wrote in
    message
    >news:0a5001c39811$47c00b60$a001280a@phx.gbl...
    >> Hi!
    >>
    >> I am trying to open a connection to a SQL Server
    database
    >> using just the Framework, Notepad and the browser. I
    keep
    >> getting the error message "SQL Server does not exist or
    >> access is denied."
    >>
    >> I am using the following for the connection:
    >>
    >> Dim conPubs As SqlConnection
    >> ConPubs = New SqlConnection ("Data
    >> Source=localhost;Initial Catalog=PUBS;Integrated
    >> Security=SSPI;")
    >> ConPubs.Open()
    >>
    >> In Page_Load of the script. I can take the same notepad
    >> aspx page and put it into Visual Studio .NET and it
    >> connects without a problem.
    >>
    >> I'm using Windows Server 2003 and my SQL Server 2000 is
    >> set up with windows authentication. I am not on a
    >> network - just studying this stuff on my home computer.
    >>
    >> THIS IS DRIVING ME CRAZY! I have read many many pages
    on
    >> security and nothing seems to be giving me what I
    need. I
    >> would guess on some level there is probably some stupid
    >> little box that has to be checked or unchecked . . .
    Where
    >> ever that could be . . .
    >>
    >> Any help anyone can give me will be immensely
    appreciated!
    >>
    >> Sandy
    >>
    >
    >
    >.
    >
    Sandy Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139