
Using Response.Redirect in try…catch block
Use overload Response.Redirect(String url, bool endResponse) if using in try catch block.
It’s really easy to call REST based web services from C#.Net. Let’s see how to do it. We’ll be calling Yahoo Web Services as an example here. Make REST Calls With C# The .NET Framework provides classes for performing HTTP requests.…
Sometimes we need to run multiple MySQL servers on single machine. That is mostly required in testing environments to test different aspects with different configurations. In this way one can test server without affecting others. So, if you want to…