---
title: "Redirect to my login page instead of the default on c# asp.net"  
description: "Redirect to my login page instead of the default on c# asp.net"  
author: "Anonymous User"  
published: 2014-12-22  
updated: 2014-12-23  
canonical: https://www.mindstick.com/forum/12808/redirect-to-my-login-page-instead-of-the-default-on-c-sharp-asp-dot-net  
category: "asp.net"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Redirect to my login page instead of the default on c# asp.net

I am using [visual](https://yourviews.mindstick.com/audio/1147/through-the-lens-a-visual-exploration-of-the-world) web [developer](https://www.mindstick.com/articles/157260/variation-between-web-designer-and-web-developer) and I am creating my first site.

I set [access](https://www.mindstick.com/articles/12994/how-foreigners-can-access-blocked-websites-in-china) [rules](https://www.mindstick.com/articles/43901/blackjack-rules) for some pages, however, when I [preview](https://www.mindstick.com/forum/429/i-want-to-get-full-path-of-lt-asp-fileupload-gt-and-then-client-can-click-the-preview-button-to-see-what-file-he-here-has-uploaded) the site and I [click](https://www.mindstick.com/articles/12423/social-login-magento-2-one-click-to-register-social) on those pages instead od redirecting me on the [Login](https://www.mindstick.com/articles/12852/styles-login-form-in-android) page I created it redirects me to the [default](https://www.mindstick.com/interview/12771/what-is-the-importance-of-default-resources) [master page](https://www.mindstick.com/blog/258/set-property-value-on-master-page-from-content-page) one.

How can I change this setting?

## Replies

### Reply by Anonymous User

Please modify the below section in your web.config file:

```
<!-- Web.config file --><system.web>   <authentication mode="Forms">      <forms forms="401kApp"loginUrl="/login.aspx" />   </authentication></system.web>
```


---

Original Source: https://www.mindstick.com/forum/12808/redirect-to-my-login-page-instead-of-the-default-on-c-sharp-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
