開発環境
vs2017
web forms
windows 10
net framework 4.6.1
表題の件ですが、ネットで見た情報通りコピペするとFormsAuthenticationが存在しないと表示されます。ファイルが連結できていないからじゃないかと思っているのですが、調べても連結の仕方が分かりません。初歩の初歩だと思いますが、教えていただけると幸いです。
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication_hara_kadai._01login { public partial class login : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Command(object sender, CommandEventArgs e) { if (FormsAuthentication.Authenticate(TextBox1.Text, TextBox2.Text)) { FormsAuthentication.RedirectFromLoginPage(TextBox1.Text, false); } else { Label5.Text = "IDまたはパスワードに誤りがあります"; } } } }
<?xml version="1.0" encoding="utf-8"?> <!-- ASP.NET アプリケーションの構成方法の詳細については、 https://go.microsoft.com/fwlink/?LinkId=169433 を参照してください --> <configuration> <system.web> <authentication mode="Forms"> <forms loginUrl="login.aspx" timeout="10"> <credentials passwordFormat="Clear"> <user name="ccc" password="111"/> <user name="bbb" password="222"/> <user name="aaa" password="333"/> </credentials>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/22 06:19