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.

new

Google Person Finder Website Locates Those Affected by New Zealand Earthquake [Google]
Tuesday, 22 February 2011 09:40
Google's never been known for its design, but in this website's case, I don't think it's an issue. They set up the site within hours of New Zealand's 6.3-measuring earthquake, to help family and friends locate one another. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/qsPgTF_S90k/google-person-finder-website-locates-those-affected-by-new-zealand-earthquake

 
These Are Not Distant Planets, Just Mistreated Frying Pans [Photography]
Monday, 21 February 2011 05:20
Turns out those scratched-up frying pans make for awesome photography, and not just adding a certain extra flavor to omelettes. In his book Devour, Christopher Jonassen presents frying pans in a whole new light—or whole new galaxy. [Christopher Jonassen via Photojojo] More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/jyxLYwLAt7Y/these-are-not-distant-planets-just-mistreated-frying-pans

 
Using ObjectDataSource
Thursday, 17 February 2011 03:24
// description of your code here




ID="DetailsView1"
runat="server"
DataSourceID="ObjectDataSource"
AllowPaging="true">


ID="ObjectDataSource"
runat="server"
TypeName="RequestListing"
SelectMethod="GetAllRequests">





//class
using System.Configuration;
using System.Data;
using System.Data.SqlClient;

public class RequestListing
{
private static string _cnnString = ConfigurationManager.ConnectionStrings [ "ApplicationServices" ].ToString();

public static DataTable GetAllRequests()
{
SqlDataAdapter adp = new SqlDataAdapter( "select * from requests", _cnnString );

DataSet ds = new DataSet( "requests" );
adp.Fill( ds, "requests" );

return ds.Tables [ "requests" ];
}
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/mLLdn5Spg5Y/12953

 
Lyxzen: A New Morning, Changing Weather
Wednesday, 16 February 2011 09:00

God damn, let's build a new movement! Dead time pacifies, so let's do it. This time all these slogans will come alive... We're not gonna be bored this time. A new morning, the weather's changing.

Read more: http://suicidegirls.com/girls/Lyxzen/photos/A+New+Morning%2C+Changing+Weather+/

 
Reverse String in C#
Sunday, 13 February 2011 00:32
// description of your code here


public string Reverse2(string x)
{
char[] charArray = new char[x.Length];
int len = x.Length - 1;
for (int i = 0; i <= len; i++)
charArray[i] = x[len-i];
return new string(charArray);
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/wuBxYDPlsQ8/12943

 
9


Page 9 of 20
Taxonomy by Zaragoza Online