1.Why do we often need to encode querystring values inside a URL using the Server.UrlEncode() method?
2.What is Smart Navigation?
3.Is cookie absolutely necessary to have sessions?
4.How many HTML Form objects can you have for ASP.NET postback?
5.What is SQL injection?
6.What is a "prepared statement" in SQL?
7.Can you overload an ASP.NET web service method with the same method name?
8.What is a threadpool?
9.What does the lock() statement do?
10.Which of the following SQL statements execute fastest?*
INSERT INTO table1 (id) VALUES (1); INSERT INTO table1 (id) VALUES (2);
INSERT INTO table1 VALUES (1); INSERT INTO table1 VALUES (2);
BEGIN; INSERT INTO table1 (id) VALUES (1); INSERT INTO table1 (id) VALUES (2); COMMIT;
INSERT INTO table1 (id) SELECT 1; INSERT INTO table1 (id) SELECT 2;
2006-07-29
16:40:33
·
4 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design