asp.net beginner

  1. maddyrafi

    Password case sensitive

    Sir, I save my password in database is SAAmi@123 but if even enter in small letters saami@123 means its also logging in but it was not correct. please correct in my code pls if (textBox9.Text != "" && textBox10.Text != "") { string connectionString; MySqlConnection cnn; connectionString =...
  2. maddyrafi

    Resolved Delete Query Error on code

    Mysql Delete record query error, if i select record from gridview that record shouls deleted from mysql database private void button9_Click(object sender, EventArgs e) { if (ID != 0) //if (textBox6.Text!= "" && textBox7.Text != "" && textBox8.Text != "") { string...
  3. maddyrafi

    Resolved Connection string Error VS

    I want to insert table in db and make connection to mysql to vs. The error i attached in the attachment and coding given below using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using...
  4. S

    Resolved My Visual studio 2019 keeps on crashing when adding a new controller in .net core

    Hi, can anyone think of any possible reason why my visual studio 2019 keeps on crashing? Once i close it down, restart it and attempt to add more attributes to the controller class it freezes and then crashes. This has happened before but I never found the solution to it. Does anyone have an...
  5. aadi56

    Resolved Please help me with asp.net and mongoDB

    I am trying to make employee registration page in asp.net with database as MongoDB. What I want to do is to have the unique email id, when a user tries to register with a email id it should show that email id already exists in the database I am not able to figure out how to do this in MongoDB...
Back
Top Bottom