HOME > บทความจากสมาชิก > (C#) ASP.NET User Authentication/Login Form แบบ SQL Server + Windows Authentication
(C#) ASP.NET User Authentication/Login Form แบบ SQL Server + Windows Authentication
บทความเรื่อง (C#) ASP.NET User Authentication/Login Form เป็นตัวอย่างการ Login Form โดยใช้ฐานข้อมูล SQL Server บน ASP.NET Web Site และมีการนำ Session เข้ามาตรวจสอบการ Login ของ User ด้วยครับ
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
</configuration>