21Apr
Posted by admin as .Net, Asp.Net, IIS7, Microsoft, Visual Studio, Web
It is very simple to get the name of the application pool current worker process is associated with in Asp.NET. You can simple use the server variables for that. For example, to display the app pool name on your web page you can simply use the below code snippet.
<%= Request.ServerVariables("APP_POOL_ID") %>
This is usually helpful when [...]
You can use Microsoft.Web.Administration namespace to create a binding and set the certificate hash. Let us say you are trying to add a new binding to a website “MySite” with a new SSL certificate hash “MyCertHash”, here is what you have to do to achieve this
ServerManager serverManager = new ServerManager();
serverManager.Sites["MySite"].Bindings.Add("*.443:", MyCertHash, "MyCert");
The bindings member configures [...]
14May
Posted by admin as .Net, Asp.Net, Godaddy, IIS7, Microsoft, Technology, Web
If you receive an error similar to Unknown server tag ‘asp:ListView‘ when hosting your website using Asp.net web hosting, this most likely is because there is an update being made to .Net Framework on the web server, or .Net framework on the web server where your web site is hosted is messed up. You should [...]
13May
Posted by admin as .Net, Asp.Net, HTML, IIS7, Microsoft, Php, Technology, The 10 Links, Windows
25 Unique uses of WordPress as CMS WordPress is often thought of as little more than a blogging platform. But it’s capable of so much more. Through a little customization and the use of plugins, WordPress can easily be transformed into a full-featured content management system. This article demos [...]
The questions I will try to answer in this post of similar to:
Can I display custom 404 pages in my Wordpress website when hosting with Godaddy using Windows Hosting?
Can I display Custom pages for any errors in Godaddy’s windows Hosting?
This solution I described here is not limited to Wordpress sites, but can [...]