Computers Archive

  • Login.aspx.cs Connecting to SQL Server with ASP.NET

    Login.aspx.cs Connecting to SQL Server with ASP.NET

    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

  • Updates, Updates and More Updates

    Updates, Updates and More Updates

    I get annoyed with updates. They frequently occur. My computer often requires an update. Almost every time I power up my computer, some software application needs an update. Sometimes an update appears while I am typing on my computer. If it is not Adobe then it is Microsoft or some other application.

    Read More