block website function by enterring in texbox in a form.need help here
C#
1
Posts
1
Posters
0
Views
1
Watching
-
How is the function for block website that have been enter in text box and click add button it will appear in listbox. All this is in one form only.And another button for remove the web site have been add in listbox. The web site have been block will block by browser and this web site cant be acess. Please help me.Thanks A lot. Below are the coding for the web site bloking form: //List box private void listBox2_SelectedIndexChanged(object sender, EventArgs e) { } //TextBox private void textBox3_TextChanged(object sender, EventArgs e) { } //Add button private void Add_Click(object sender, EventArgs e) { } //Remove private void Remove_Click(object sender, EventArgs e) { } Tq...