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.

name

Changing Apache Server Name To Whatever You Want With mod_security On Debian 6
Friday, 10 February 2012 09:58

Changing Apache Server Name To Whatever You Want With mod_security On Debian 6

In this tutorial I want to focus on how to change the Apache server name to whatever you want, so you can give your own name or sentence to Apache server headers that are sent to whois programs or websites, for example you can type "YTS","GWS" or "Microsoft-IIS/7.0" to misguide the hacker to guess which Linux OS or which version of Apache you are using.

Read more: http://www.howtoforge.com/changing-apache-server-name-to-whatever-you-want-with-mod_security-on-debian-6

 
Don't Be Dumb Like a Newspaper and Forget to Renew Your Domain Name [Psa]
Friday, 03 February 2012 10:57
If you own a website, it's probably a good idea to renew your domain name right now. In fact, it's probably a good idea to renew your domain name for as long as is fiscally responsible for you. 3 years? 5 years? Whatever, go do it! We don't want your website ending up like the newspaper, The Bay Citizen, which currently re-routes you to an embarrassing GoDaddy landing page. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/4Ce3rv9OcD8/dont-be-dumb-like-the-bay-citizen-and-forget-to-renew-your-domain-name

 
how to open window using javascript
Monday, 26 December 2011 23:57
The syntax of the window.open method is given below:
open (URL, windowName[, windowFeatures])

URL
The URL of the page to open in the new window. This argument could be blank.

windowName
A name to be given to the new window. The name can be used to refer this window again.

windowFeatures
A string that determines the various window features to be included in the popup window (like status bar, address bar etc)

The following code opens a new browser window with standard features.

window.open ("http://www.javascript-coder.com","mywindow");

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/JCryj253zBY/14353

 
Select Unique records based on specified fields or column from DataTable
Monday, 19 December 2011 02:18
This will help you only when you have to filter distinct records based on specified fields.
e.g. I have a table called UserDetail which contains the following fields:

UserID | Name | Mobile | Email | City | State

Now I want to only display distinct records with Name, City and State, then you can use:

string[] TobeDistinct = {"Name","City","State"};
DataTable dtDistinct = GetDistinctRecords(DTwithDuplicate, TobeDistinct);

//Following function will return Distinct records for Name, City and State column.
public static DataTable GetDistinctRecords(DataTable dt, string[] Columns)
{
DataTable dtUniqRecords = new DataTable();
dtUniqRecords = dt.DefaultView.ToTable(true, Columns);
return dtUniqRecords;
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/b62ajuXbh28/14235

 
Research in Motion Denies BBX Infringement Claims, Doesn't Know What All the Fuss Is About [Lawsuits]
Thursday, 20 October 2011 23:00
After numerous public gaffes, RIM is banking on BBX, its newest platform, to help drag the company back into respectability. Unfortunately, the "BBX" name itself could be infringing on a New Mexican software maker's trademarks. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/YlhoQsi677g/research-in-motion-denies-bbx-infringement-claims-doesnt-know-what-all-the-fuss-is-about

 
Start
Prev
1


Page 1 of 3
Taxonomy by Zaragoza Online