Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

list

Bind list<T> to drodown box
Monday, 30 January 2012 07:55
// Bind list to drodown box


public static List WeekDays= new List { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };.
MyDropdownList.DataSource = Months;
MyDropdownList.DataBind();

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/PtchzWG6a1I/14553

 
Display list of all active HttpModules in ASP.NET
Wednesday, 21 December 2011 01:11
We can get the list of all HttpModules from the web.config or from machine.config file. But, what we need to do if we want to get the list of all active HttpModules during runtime? Yes. We can easily get the details with the help of HttpApplication and HttpModuleCollection Class. If we quickly recall the IIS Process Request, when a request reaches to worker Process from client browser, First of all Worker process is responsible to start and HttpRuntime by loading ISAPI filter. After that HttpRuntime load an HttpApplication object with the help of HttpApplicationFactory class. Each and every request should pass through the corresponding HTTPModule to reach to HTTPHandler, this list of module are configured by the HTTPApplication. Below is the code snippet by which we can get the list of active HttpModules.

//Get Application Instance from Current Content
HttpApplication httpApps = HttpContext.Current.ApplicationInstance;
//Get List of modules
HttpModuleCollection httpModuleCollections = httpApps.Modules;
Response.Write("Total Number Active HttpModule : " + httpModuleCollections.Count.ToString() + "
");
Response.Write("List of Active Modules" + "
");
foreach (string activeModule in httpModuleCollections.AllKeys)
{
Response.Write(activeModule + "
");
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/xCXA4zh_D3g/14261

 
A Google Search For "Let It Snow" Guarantees a White Christmas [Easter Eggs]
Saturday, 17 December 2011 16:00
Google seems to be trying its hand at a lot of things these days. And you can now add 'weather control experiments' to its list of success stories with the company's latest Easter Egg. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/QK5hD5ck1qQ/a-google-search-for-let-it-snow-guarantees-a-white-christmas

 
need help with my assignment.
Thursday, 04 August 2011 07:28
// description of your code here
i need a recursive program that will promt the user to enter a path to any folder and print a list of files saved under the entered folder.

// insert code here..

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/v-7sYGc9vJs/13459

 
How To Install And Configure Mailman (With Postfix) On Debian Squeeze
Sunday, 17 July 2011 13:51

How To Install And Configure Mailman (With Postfix) On Debian Squeeze

Mailman is an open-source mailing list manager, i.e., it can be used to manage email discussions and newsletter lists. It is probably the most popular and widely used mailing list manager on the Internet. This tutorial explains how to install and configure Mailman on a Debian Squeeze server with a Postfix mail server.

Read more: http://howtoforge.com/how-to-install-and-configure-mailman-with-postfix-on-debian-squeeze

 
Start
Prev
1


Page 1 of 2
Taxonomy by Zaragoza Online