Latest Added Tutorials
16-06-2016
C# Codes
private void ExportGridToExcel()
{
Response.Clear();
Response.Buffer = true;
Response.ClearContent();
Response.ClearHeaders();
string fileName = "Devlet_Personel_Baskanligi_"
+ DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls";
StringWriter strwritter = new StringWriter();
HtmlTextWriter htmltextwrtter = new HtmlTextWriter(strwritter);
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = "application/ms-excel";
Response.ContentEncoding = System.Text.Encoding.Unicode;...Continue Reading
02-11-2013
An Application Domain is the logical and physical boundary created around every .NET application by the Common Language Runtime (CLR).
One web application runs in a single Application Domain but may communicate via web/remote services with applications in other domains.
The CLR may allow multiple .NET applications......Continue Reading