Click here to Skip to main content
15,891,033 members
Articles / Web Development / ASP.NET

Implementing Model-View-Presenter in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.80/5 (27 votes)
17 Nov 2007CPOL12 min read 129.6K   2.7K   120  
Three implementations of Model-View-Presenter in ASP.NET 2.0.
//////////////////////////////////////////////////////////////////////////////////////////////
//	Turkish Translation by Nuri AKMAN
//	Location: Ankara/TURKEY
//	e-mail	: nuriakman@hotmail.com
//	Date	: April, 9 2003
//
//	Note: if Turkish Characters does not shown on you screen
//		  please include falowing line your html code:
//
//		  <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
//
//////////////////////////////////////////////////////////////////////////////////////////////

// ** I18N
Calendar._DN = new Array
("Pazar",
 "Pazartesi",
 "Sal�",
 "�ar�amba",
 "Per�embe",
 "Cuma",
 "Cumartesi",
 "Pazar");
Calendar._MN = new Array
("Ocak",
 "�ubat",
 "Mart",
 "Nisan",
 "May�s",
 "Haziran",
 "Temmuz",
 "A�ustos",
 "Eyl�l",
 "Ekim",
 "Kas�m",
 "Aral�k");

// tooltips
Calendar._TT = {};
Calendar._TT["TOGGLE"] = "Haftan�n ilk g�n�n� kayd�r";
Calendar._TT["PREV_YEAR"] = "�nceki Y�l (Men� i�in bas�l� tutunuz)";
Calendar._TT["PREV_MONTH"] = "�nceki Ay (Men� i�in bas�l� tutunuz)";
Calendar._TT["GO_TODAY"] = "Bug�n'e git";
Calendar._TT["NEXT_MONTH"] = "Sonraki Ay (Men� i�in bas�l� tutunuz)";
Calendar._TT["NEXT_YEAR"] = "Sonraki Y�l (Men� i�in bas�l� tutunuz)";
Calendar._TT["SEL_DATE"] = "Tarih se�iniz";
Calendar._TT["DRAG_TO_MOVE"] = "Ta��mak i�in s�r�kleyiniz";
Calendar._TT["PART_TODAY"] = " (bug�n)";
Calendar._TT["MON_FIRST"] = "Takvim Pazartesi g�n�nden ba�las�n";
Calendar._TT["SUN_FIRST"] = "Takvim Pazar g�n�nden ba�las�n";
Calendar._TT["CLOSE"] = "Kapat";
Calendar._TT["TODAY"] = "Bug�n";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
Calendar._TT["TT_DATE_FORMAT"] = "d MM y, DD";

Calendar._TT["WK"] = "Hafta";

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions