Missing appSetting:CuteChat.SqlClient.ConnectionString

  •  04-21-2007, 11:32 AM

    Missing appSetting:CuteChat.SqlClient.ConnectionString

    whileupgradign to ASP.net 2 i got this error
    "Missing appSetting:CuteChat.SqlClient.ConnectionString "
    i use SQL 2005 , ASP.net2 , Win 2003
    i have added the ap settings in my web.config on the root:

    <add key="ConnectionString" value="Server=xxxxxx;Database=yyyyyyy;Persist Security Info=True ;integrated security=sspi;" />

    My Global .asax looks like this :

    <%@ Application Language="C#" %>

    <%@ Import Namespace="System.Threading"%>

    <%@ Import Namespace="System.Globalization"%>

    <%@ Import Namespace="System.Security.Principal"%>

    <%@ Import Namespace="System.Data.SqlClient" %>

    <%@ Import Namespace="Utils" %>

    <script runat="server">

     

    #region Code - CuteChat Interfaces Implementation - For Integration

    public string GetConnectionString(CuteSoft.Chat.UserIdentity user)

    {

    return Utils.strConnection; // this is the global connection strin thta the whole system uses

    }

    .......... the other part is almost as is  the demo i got.

    bu still it never run ,any help in that .

View Complete Thread