March 2006 - Posts
im having some problem with my IIS, its giving me this red color error
Server Application Failiure..
and im working on a very tight schedule so no time to diagnose the problem...what im currently doing is reset the iis (iisreset).I got no idea why is that comingg.. anybody??
whats comes to my mind ? google. oh yeah. I think the best web products ever from google. The main reason i thnk is the simplicity. And the minimum round trips to the server. Personally i feel, to give the best web experience is to reduce the round trips to the server (do most stuff in the client) and keep the things as simple as possible. Anyhow id like to know/comment on this from you guys, what makes a web site user friendly ?
well, what microsoft has to say about it?
The Microsoft .NET Framework is built into all products in the Windows Server 2003 family except for the 64-bit versions.
The 32-bit version of the .NET Framework 1.1 is supported by 64-bit versions of Windows Server 2003 with SP1 and can be installed for 32-bit applications that are running on 64-bit versions of Windows operating systems. The 32-bit version of the .NET Framework 1.1 takes advantage of the Windows on Windows 64 (WOW64) 32-bit subsystem.
Couldn’t post anything new these days, due to my tight
schedule at work. Anyhow I’m planning to write an article about Web Services (i.e.
WCF) in future. And I’m currently reading .Net Framework internals. great technical stuff.....so I will
post on them shortly. Stay tuned….
Since i got a tight working schedule couldnt post anything from two weeks.. so just a quick tip.. I have posted so many times about macross.. So here im gonna give you a piece of macro code to generate Proprties(C#) .
read more :
http://ludmal.blogspot.com/2005/08/cut-down-your-development-time.htmlSub GenerateProperty()
Dim name As String
Dim type As String
name = InputBox("what is the property name?", "Property Name")
type = InputBox("what is the type name?", "Type Name")
If (name Is Nothing Or type Is Nothing) Then
MsgBox("Opppss cannot create property")
Return
End If
DTE.ActiveDocument.Selection.Text = "private " + type + " " + name.ToLower() + ";"
DTE.ActiveDocument.Selection.NewLine()
DTE.ActiveDocument.Selection.Text = "public " + type + " " + name + " {"
DTE.ActiveDocument.Selection.NewLine()
DTE.ActiveDocument.Selection.Text = "get { return " + name.ToLower() + "; }"
DTE.ActiveDocument.Selection.NewLine()
DTE.ActiveDocument.Selection.Text = "set { " + name.ToLower + " = value; }"
DTE.ActiveDocument.Selection.NewLine()
DTE.ActiveDocument.Selection.Text = "}"
DTE.ActiveDocument.Selection.NewLine()
End Sub