Parser Error Message: The '=' character, hexadecimal value 0x3D, cannot be included in a name.

Discussion in 'ASP.NET / ASP.NET Core' started by quino, Nov 3, 2006.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I´m Having troubles with Web.config Connection ...this is the line :

    Parser Error Message: The '=' character, hexadecimal value 0x3D, cannot be included in a name. Line 13, position 8.

    Line 12: <connectionStrings>
    Line 13: <name="C16MoviesConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=e:\web\jferragutco\htdocs\_database\C16Movies.mdb;Persist Security Info=True"
    Line 14: providerName="System.Data.OleDb" />
    Line 15: </connectionStrings>

    I have Been trying everything but nothing seems to work , please help me with fresh ideas .
    By the way I have allocated the web.config in the same directorywiththe page,not in the Root, is that OK??

    Thank you Very Much

    keenoh
     
  2. You are missing the keyword 'add'

    <add name='C16MoviesConnectionString' connectionString='Provider=Microsoft.Jet.OLEDB.4.0;Data Source=e:\web\jferragutco\htdocs\_database\C16Movies.mdb;Persist Security Info=True'
    providerName='System.Data.OleDb' />

    Vikram

    DiscountASP.NET
    www.DiscountASP.NET
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page