May I know how to block a website using .Net programming and what are the requirements to do so
Thanking u
Chaithanya
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Niradhip ChakrabortyPosted Aug 27, 2009, 5:00 AM
StreamWriter sw = new StreamWriter(path, true);
String sitetoblock = "\n 127.0.0.1 google.com";
sw.Write(sitetoblock);
sw.Close();
Thaju dheenPosted Oct 5, 2009, 7:03 AM
chaithanyaPosted Sep 14, 2009, 8:00 AM
Please Help me
Thnking u
Chaithu
Meetu ChoudharyPosted Aug 27, 2009, 6:58 AM