rojay, thanks for jumpin in!
I have no connectionstrings hard coded in the web.config file.
No firewall or AV programs, Brebones installation. XP firewall not running.
I started on fresh install of everything from formatted hard drive. All XPSP2 updates.
I played with settings in SQL Server protocols, surface configuration, changed connection string
properties, Made new pages with only two users for loggin in. Made adjustments in IIS. I didn't
screw up anything (hopefully) - always put it back.
Modified connection string in machine.config.
String shown in ASPNETDB properties in Visual Web Developer:
Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Site\App_Data\ASPNETDB.MDF;Integrated Security=True;User Instance=True
web.config file:
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings/>
<connectionStrings/>
<system.web>
<roleManager enabled="true"/>
<compilation debug="false" strict="false" explicit="true"/>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<authentication mode="Forms"/> <!--also tried mode="Windows"-->
</system.web>
</configuration>
I'll post the string from the server .Net FX/machine.config file when I get to the machine.