Browse by Tags
Sorry, but there are no more tags available to filter with.
-
http://blogs.msdn.com/pathelland/archive/2007/05/14/i-m-glad-to-be-back.aspx La cosa incredibile è che te ne accorgi dopo giorni, cercando tutt'altro. Spero che rientri nel giro degli eventi (TechEd, PDC, ecc.) Read More...
-
Il problema Il problema che volevo affrontare è di accedere ad un altro sistema in modo astratto con un pattern di tipo Factory che istanzi un provider specificato dalla configurazione. In più ogni chiamata all'altro sistema poteva richiedere un provider Read More...
-
Can't believe. It worked at first try: installed Application Center Test without all other stuff in Visual Studio.NET 2003. Type D:\ENGLISH\VS.NET2003\setup\setup.exe /NO_BSLN_CHECK Then unselect everything but ACT [:O]. Read More...
-
Short form: net user myalias /domain Long form (see Listing 7): http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnclinic/html/scripting09102002.asp Read More...
-
Using the Visual Studio .NET 2003 Debugger with ASP.NET Applications I saw something similar two or three years ago in some internal FAQ, but this is very well written and complete. In the past you had a bunch of KB articles (e.g. 306172 ), useful but Read More...
-
In setup Control Panel / Add or Remove Programs / Add or Remove Windows Components under Application Server / Internet Information services / World Wide Web Service / Remote Desktop Web Connection Read More...
-
This blog is taking a shape: the notes here are solutions and tips found in my daily job, solving real‑life customer projects. So I was thinking at some old arguments I discussed in other places, and now I have a (sort of) ‘editorial plan’ that includes Read More...
-
This is a simple batch to force a static IP address on my machines. ECHO interface ip > " %temp% \z.netsh" ECHO set address "Local Area Connection" static 192.168.100.173 255.255.255.0 192.168.100.1 3 >> " %temp% \z.netsh" ECHO set dns "Local Read More...
-
You can redirect the My Virtual Machines folder (usually in My Documents ) by setting the environment variable myvirtualmachines to the desired path. Read More...
-
Very easy but hard to find. System.Web.Services.Protocols.SoapHttpClientProtocol proxy = ... System.Net.WebProxy ieProxy = System.Net.WebProxy.GetDefaultProxy(); if (ieProxy != null && ieProxy.Address != null ) { ieProxy.Credentials = System.Net.CredentialCache.DefaultCredentials; Read More...