Parent Path in WebsitePanel
Parent path is a security property of WebsitePanel. This property allow web pages to use relative paths to the parent directory of the current directory (paths using the “..” syntax). … Learn More
View ArticleTransform Web.config When Deploying a Web Application Project
When we develop asp applications, usually the Web.config file has values that allows the application to work on your development environment. Transforming Web.config file makes the deployment of...
View ArticleInProc Session State Mode in ASP.Net
ASP.NET session state supports different storage options for session data: InProc mode, StateServer mode, SQLServer mode, Custom mode and Off mode. In this article I will give you an step-by-step …...
View ArticleState Server mode in ASP.NET
StateServer mode ensures that session state is preserved if the Web application is restarted and also makes session state available to multiple Web servers. In this article I will give … Learn More
View ArticleChange Homepage with Web.Config
When you create your application project, the “default.aspx” page is set as your homepage. But what if you need to set another page as homepage for your ASP application? In … Learn More
View ArticleSQL Server mode to store session state in ASP.NET
SQL server mode ensures that session state is preserved if the web application is restarted and also makes session state available to multiple web servers in a web farm. In … Learn More
View ArticleUser Login Redirect in ASP.Net
In this article I am going to give you a step-by-step guide on how to do a User Login Redirect in ASP.Net Getting Started 1. Create a new project site … Learn More
View ArticleSet up a Website Easily in WebSitePanel.
WebsitePanel allows you to create a website where you can host your ASP application. On previous posts, I demonstrated you how to create a website in several steps. It worked … Learn More
View ArticleFix CSS not loading in ASP
In this article I am going to show you how to properly load the CSS style sheets of the master page for your ASP project. Overview CSS files contain style rules … Learn More
View ArticleDisplay Youtube Videos in ASP
In this article we are going to show you how to display YouTube videos on your ASP site, you can do this in Visual Studio or Notepad or any other text editor of … Learn More
View ArticlePrevent double click ASP.net
People tend to double click buttons if an app is taking some time to respond, and this could lead to errors or problems with the user request. In this article … Learn More
View ArticleMVC Page Redirect in ASP.Net
In this tutorial video we are going to show you how to do a page redirect in asp.net with an MVC project. This Concludes MVC Page Redirect in ASP.Net Looking … Learn More
View ArticleAllow users to access specific locations in ASP
Some projects require to set permissions to access specific locations within your project. In this article I will show you in a step-by-step guide how to restrict access to users … Learn More
View ArticleDetect Browser Capabilities in ASP.NET Web Forms
In the development of ASP.net applications, it is very important to know if this will be compatible with various browsers. Knowing the capabilities of browsers, we may know if our … Learn More
View ArticleDisplay Session Timeout Message in ASP.Net
Real world ASP.Net applications required to have a controlled session time for users. This is done to block unauthorized people from using the application. Nevertheless, you should show users a … Learn...
View Article