Password Management System Update
I have updated my Password Management System because I found out that when you edit your account the "Note" TextBox changes the value to empty. In this case, when you save it again the data is lost.
Using system.IO;
We have to place these controls on the webpage (ASPX page)
Text box with ID=Textbox1
Button with ID= button1
Label with ID= label1
private void DataGridvie_selected(Object sender,EventArgs e)
{
DataSet da=new DataSet();
int i=datagrid1.selectedIndex;
int empidval=ds.Tables["emp"].Rows[i][0].ToString();
SqlConnection conn=new Sqlconnection("conn string");
conn.Open();
Here's the continuation of the 2nd part of the Login System video tutorial.