Posted on 24-September-2005 by abibaby
I took part in the “Race To Linux” and submitted a Grasshopper port of ASP.NET Starter Kit’s ‘Time Tracker’ project. I had to write up an article on the approach, which is located at http://www.codeproject.com/useritems/TimeTracker_Porting.asp
Filed under: General | Leave a Comment »
Posted on 2-September-2005 by abibaby
Intresting…
IIS on 2003 will show high usage (100%). And the fix is at http://support.microsoft.com/?id=894484. Looks like something to do with vunerability. It looks like it is to do with the asp.dll
Filed under: General | Leave a Comment »
Posted on 2-September-2005 by abibaby
This was a reply to a post from someone on dotnetjunkies. It says “There are events like Page_Load, OnPreRender, and so on events, who fires it, exactly. Don’t say .NEt framework, it is like Universe. Be specific.” Obviously this person wants exact answers and looks like got the passion for understanding unknown.
Ok in simple terms [...]
Filed under: General | Leave a Comment »
Posted on 2-September-2005 by abibaby
Ok i was answering questions at http://www.dotnetjunkies.com forums. Someguy had this question. so here is the answer…
Ping in .NET using C# or VB.NET? In other words, how can you find is some host (may be web site) is alive?
#region PING Example
private void button1_Click(object sender, System.EventArgs e)
{
CheckConnection(“localhost”);
CheckConnection(“www.thiswebsitenamedoesnotexistsatontheplanet.com”);
}
public void CheckConnection(string server)
{
//Set up variables and [...]
Filed under: General | 1 Comment »