Jwalin Khatri

Archive for December 2008

http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=476

http://www.codeproject.com/KB/aspnet/AspAspNetSessionBridge.aspx

override the ToString() method to make a nice ledgiable version of my object.
 
1 public override string ToString()
2 {
3 StringBuilder sb = new StringBuilder();
4 [...]

Print Part of Page

Posted by: jwalin on: December 11, 2008

function printPartOfPage(Div)
{

 var printContent = document.getElementById(Div);
 
 var windowUrl = ‘about:blank’;
 var uniqueName = new Date();
 var windowName = ‘Print’ + uniqueName.getTime();
 var printWindow = window.open(windowUrl, windowName, ‘left=50000,top=50000,width=0,height=0′);

 //document.getElementById(“button”).style.visibility=”hidden”;

 printWindow.document.write(document.getElementById(“table”).innerHTML);
 printWindow.document.write(printContent.innerHTML);
 printWindow.document.close();
 printWindow.focus();
 printWindow.print();
 printWindow.close();
 
 document.getElementById(“button”).style.visibility=”visible”;

 return false;

}

how to develop the DTS package in SQL Server 2005

Posted by: jwalin on: December 8, 2008

http://dotnet.sys-con.com/node/45541

http://www.mssqltips.com/tip.asp?tip=1024

Customize calander control

Posted by: jwalin on: December 2, 2008

http://microsoft.apress.com/asptodayarchive/72141/using-the-calendar-control

Tags:

Executing async tasks in Asp.net

Posted by: jwalin on: December 2, 2008

Thank you for andreacol.net/blog
In this article I want to show 3 different ways to deal with long running tasks in Asp.net.
If such a task must be initiated from an Asp.net web page, the thread that is serving the page request is bound to the task until it completes or a timeout occurs. Asp.net and .net framework [...]


Blog Stats

  • 14,744 hits

  • jwalin: Follow the following steps 1]. open you Page in NOTEPAD. 2]. find the tag 3]. Replace the "body" like body oncontextmenu=”return false;" 4]. Sav
  • cytocine: Halu , how to put that , i mean where to put the part ?? i really dont know i hope you can help me out thanks..
  • elmerdolor: Halu , how to put that , i mean where to put the part ?? i really dont know i hope you can help me out thanks..