using System; using System.Configuration; using System.Data.SqlClient; public partial class Login : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void LoginButton_Click(object sender, EventArgs e) { String cs = ConfigurationManager.ConnectionStrings["csString"].ConnectionString; String strUserName = UserName.Text; String strPassword = Password.Text; String strUserId = “”; String strMemberId = “”; String strRoleId = “”; DateTime dtLogDate = [...]
Read More