02Igarashi01
@02Igarashi01

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

AspNet .NetFramework

解決したいこと

今日は、プログラミングの勉強して居るが、エラーで困ってます

発生している問題・エラー

HTTP ERROR 500.19 - Internal Server Error

HTTP Error 500.19 - Internal Server Error
ページに関連する構成データが無効であるため、要求されたページにアクセスできません。

Detailed Error Information:
Module IIS Web Core
Notification 不明
Handler 未定義です
Error Code 0x80070032
構成エラー セクション宣言が見つからないため、構成セクション 'connectionString' を読み取れません
構成ファイル \?\C:\Users\五十嵐 譲羽\source\repos\GameLibrary\GameLibrary.Site\web.config
Requested URL https://localhost:44385/Autenticacao/Login.aspx
Physical Path
Logon Method 未定義です
Logon User 未定義です

構成ソース:
7:
8:
9:

More Information:
このエラーは、Web サーバーまたは Web アプリケーションの構成ファイルの読み取りに問題があるときに発生します。エラーの原因に関する情報が、イベント ログに記録されている場合があります。
ブラウザーに "重複する 'system.web.extensions/scripting/scriptResourceHandler' セクションが定義されています" というテキストが表示される場合は、.NET 3.5 ベースのアプリケーションを .NET Framework 4 で実行したことが原因です。WebMatrix を実行している場合は、この問題を解決するために、[設定] ノードに移動して、.NET Framework のバージョンを ".NET 2" に設定します。web.config ファイルの余分なセクションを削除することもできます。
View more information »

該当するソースコード

<?xml version="1.0" encoding="utf-8"?>
<!--
  ASP.NET アプリケーションの構成方法の詳細については、
  https://go.microsoft.com/fwlink/?LinkId=169433 を参照してください
  -->
<configuration>

   <connectionString>
	<add name="ConexaoSqlServer" connectionString="Data Source=NEOGEO\NEOGEOSQLEXPRESS;Initial Catalog=GameLibrary;Persist Security Info=True;User ID=sa;Password=sakurablood" providerName="System.Data.SqlClient" />
   </connectionString>
  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
  </system.web>
  <system.codedom>
    <compilers>
      <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
      <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
    </compilers>
  </system.codedom>
</configuration>
0

@02Igarashi01

タグの名称が誤っていると思います。

☓ connectionString
○ connectionStrings

  <configuration>  
    <connectionStrings>  
      <add name="ConexaoSqlServer" connectionString="Data Source=NEOGEO\NEOGEOSQLEXPRESS;Initial Catalog=GameLibrary;Persist Security Info=True;User ID=sa;Password=sakurablood" providerName="System.Data.SqlClient" />
    </connectionStrings>  
  </configuration> 
0Like

Your answer might help someone💌