-
While debugging you WCF-Service or ASP.NET application within UnitTest you may get following warning when stepping into the service code. “Attaching to this process can potentially harm your computer…” For example, this can happen when you have the UnitTest which invokes the Service via generate Proxy...
-
IIS 7.5 which is ships with Windows Server 2008 R2 and Windows 7 provides a new feature for Web Applications. This feature allows one to install a Web Application which is not initialized after receiving of the first request started. Instead such application is started immediately after it is configured...
-
If you want to set the maximum request size, e.g. to define the maximum size for file uploads, you can use the way described in this post: http://developers.de/blogs/nadine_storandt/archive/2009/04/24/moss-set-max-upload-size-on-iis-7.aspx (thanks to Nadine) This command line tool just adds a new node...
-
Microsoft finally released a new CTP of the .NET Services SDK, the March 2009 CTP Personally, I think it is a very noteworthy release since it now allows for the first time to develop full blown applications in the Workflow Services part of it: Now you can activate workflows from an external source,...
Posted to
Andreas Erben's posts
by
Andreas Erben
on
04-01-2009
Filed under:
Filed under: .NET, .NET 3.5, SOA, Cloud Computing, Cloud, BizTalk Services, Cloud Services, Azure, .NET Services SDK, MVC, .NET Services, ASP.NET
-
While processing http request in a ASP.NET application, the current culture of the thread on which the request is processing, depends on the language settings of the browser. For example, if the user has set languages [de-de], [en-us] and [bs-Latn-ba] in his browser, then property Request.UserLanguages...
-
It is often a case that complex ASP.NET applications make usage of request query strings. For example it can happen that same page is opened with the request query like this one: http://localhost:7000/YourApp/Login.aspx?ReturnUrl=%2fYourApp%2fDefault.aspx%3fControledStart%3dtrue%26NewWindow%3dPleaseNotOpenInNewWindow...
-
When implementing ASP.NET applications which make usage of AJAX and Windows Forms Authentication, there are few critical issues you have to be aware of. in this post you can find few very interesting information related to AJAX and FormsAuthentication. Problem Description Assume there is an ASP.NET application...
-
Following mime types should be registered in IIS, when using VSTO and ClickOnce: .application application/x-ms-application .manifest application/x-ms-manifest .deploy application/octet-stream .deploy application/x-ms-vsto
-
When working in big projects (of type ASP.NET) you may notice (for sure) that your development environment (means VS) does not perform well (understood bad). This was a reason to investigate what happen behind the scene. This post contains some interesting details which could help you to organize your...
-
While configuring the security of the web application in IIS7, you may notice that required security mechanism does not exist at all in the Authentication settings of the application. For example you want to enable Windows Authentication, but only Anonymous and Forms authentication are provided by IIS...
-
While migrating of your ASP.NET application from IIS6.0 or Casini to IIS7.0 you may run into several problems. Because the architecture of IIS has been changed, there are few things you have to be aware of. I'm not going to describe all of them in detail in this post, but I will point few of them...
-
Each ASP.NET 2.0 page, which enables AJAX callback, has to implement the interface ICallbackEventHandler . There are many articles which briefly describes how to do that. My intension is not to repeat the well known story. I would rather focus error handling while performing callbacks in AJAX. If you...
-
Sometimes you will have a trivial requirement to create just simple ASP.NET user control (control derived from UserControl), which should have a property of a collection type. Following example illustrates such control: public partial class ComboBoxControl : UserControl { protected void Page_Load( object...
-
Imagine you have a control which registers some trivial script, which has to be executed during loading of the page. To do that you will usually use following method: page.ClientScript.RegisterStartupScript(…) After some time, you decide to use the same control inside of UpdatePanel and find out...
-
ASP.NET AJAX framework (ATLAS) is shipped with a powerful control UdatePanel. The control offers very easy way to build responsive applications. However it provides also some few different behaviors which every developer should know. In this context the UpdateMode property of the UpdatePanel is considered...