Use this code for adding virtual on your xampp windows sistem.
Read More!
Ctrl + ] | Moves the cursor to the matching Closing or Opening brace |
Ctrl + hyphen | Moves cursor to its previous position |
Shift + F7 | Switch between the Design View and Source View |
Ctrl + Tab | Displays the all open files in VS |
Ctrl + Shift + F | Find |
F3 | Search Again or continue search |
protected void btnSignIn_Click(object sender, EventArgs e) { string strConnection = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString; string strInsert = "INSERT INTO Users (Username,Password) VALUES(@Username,@Password)"; SqlConnection con = new SqlConnection(strConnection); SqlCommand cmd = new SqlCommand(); cmd.Connection = con; cmd.CommandType = CommandType.Text; cmd.CommandText = strInsert; SqlParameter username = new SqlParameter("@Username", SqlDbType.VarChar, 50); username.Value = txtUserName.Text.Trim().ToString(); cmd.Parameters.Add(username); SqlParameter password = new SqlParameter("@Password", SqlDbType.VarChar, 50); password.Value = txtPassword.Text.Trim().ToString(); cmd.Parameters.Add(password);
ProcessBuilder pb = new ProcessBuilder("tasklist").redirectErrorStream(true);
Process p = pb.start();
Then make a BufferedReader that can read the console output screen: BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
while((str = br.readLine()) != null){
retVal += str;
}
Expression | Description |
---|---|
nodename | Selects all child nodes of the named node |
/ | Selects from the root node |
// | Selects nodes in the document from the current node that match the selection no matter where they are |
. | Selects the current node |
.. | Selects the parent of the current node |
@ | Selects attributes |