Posted by: jwalin on: December 23, 2008
http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=476
Posted by: jwalin on: December 16, 2008
http://www.codeproject.com/KB/aspnet/AspAspNetSessionBridge.aspx
Posted by: jwalin on: December 16, 2008
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 [...]
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;
}
Posted by: jwalin on: December 8, 2008
http://dotnet.sys-con.com/node/45541
Posted by: jwalin on: December 8, 2008
http://www.mssqltips.com/tip.asp?tip=1024
Posted by: jwalin on: December 2, 2008
http://microsoft.apress.com/asptodayarchive/72141/using-the-calendar-control
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 [...]