Re: Problem with deploy cute chat sandalone

  •  03-23-2007, 12:32 PM

    Re: Problem with deploy cute chat sandalone

    Yes the directoty point to Framework 2.0 ...  here is my Web Config file:

    the web.config is on the root not under chat folder that is correct?


    <?xml version="1.0"?>
    <configuration>
        <appSettings>
            <add key="ConnectionString" value="server=192.168.1.2;database=cute;uid=sa;pwd=*****/"/>
            <add key="OnlineTimeout" value="300"/>
        </appSettings>
        <system.web>
            <compilation defaultLanguage="c#" debug="true"/>
            <customErrors mode="Off"/>
            <authentication mode="Forms">
                <forms name=".UserManagementASPXAUTH" loginUrl="~/Login.aspx"/>
            </authentication>
            <authorization>
                <allow users="*"/>
            </authorization>
            <trace enabled="true"></trace>
            <sessionState mode="InProc" timeout="20"/>
            <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
            <xhtmlConformance mode="Legacy"/></system.web>
    </configuration>

View Complete Thread