MySQL Fundamentals
Fundamentals of MySQL, an essential part of the LAMP stack.
http://pluralsight.com/training/Courses/TableOfContents/mysql-fundamentals-part1?utm_source=sqlauthority&utm_medium=sidebar&utm_content=latest&utm_campaign=newlook
I am a Web Developer in aps.net technology .Presently working in G-Asra Tech Ludhiana(Punjab), India
Hashtable hashtable = new Hashtable();
key = 1;
name = "A";
hashtable.Add(key,name);
key = 2;
name = "B";
hashtable.Add(key,name);
key = 3;
name = "lily";
hashtable.Add(key,name);
u can use foreach loop for read
foreach (string key in hashtable.Keys) {
Response.Write(key + '=' + hashtable[key] + "<br>");
}
HTTP requests coming from the user and generates the appropriate response for it. ASP.NET framework knows how to process different kind of requests based on extension, for example, It can handle request for.aspx, .ascx and .txt files, etc. When it receives any request, it checks the extension to see if it can handle that request and performs some predefined steps to serve that request.HTTPHandler to have our functionality in place.HTTPModule in place to achieve that.HTTPHandlers are used by ASP.NET to handle the specific requests based on extensions. HTTPModule, on the other hand, is used if we want to have our own functionality working along with the default ASP.NET functionality. There is one Handler for a specific request but there could be N number of modules for that.