I have a web application using Enterprise Web Library and I've found the need to have a custom log-in page. I see that EWL provides one for me, but I want to be able to have some custom elements on the page and control how the user is logged in. How can I achieve this in EWL?
How can I have a custom login page in EWL?
141 Views Asked by Sam Rueby At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in AUTHENTICATION
- Access roles from multiple applications
- Different storyboard's entry points depending on a parameter
- SoundCloud Authentication Consistently Returns 401 invalid_grant For Some Users
- sendxmpp not authorized failure (Error AuthSend)
- Retrieve user information from Active Directory on login
- Log in through active directory
- Ember.js REST Auth Headers
- Validate Deezer access token on server
- Why does IIS Anonymous Authentication turn on by itself after I publish my project to server?
- Laravel - session data survives log-out/log-in, even for different users
- How can I share Azure Active Directory authentication between server side and client script?
- django rest framework - token authentication logout
- NameValuePair, HttpParams, HttpConnection Params deprecated on server request class for login app
- How to delete user from _User through Parse REST API
- Cannot login with new SQL User - SQL 2014
Related Questions in WEB-APPLICATIONS
- Azure Web App PATH Variable Modification
- How To Update a Web Application In Azure and Keep The App Up the whole time
- Developing a search and tag heavy website
- How do you include a HTML file in c
- Is it recommended to use Node.js for an online room booking web application?
- programmatically uninstall other application without asking user
- Fail to locate j_spring_security_check in Spring Security
- Configuring Web Applications for iOS
- Change Javascript Variables Using <input>
- how do you use angularJs to produce a functioning webapp?
- NoClassDefFound error in web application deployed on Tomcat
- Replying to a request in ruby on rails (Server side)
- Exclude one role in web.xml
- LDAP connection only works on localhost
- Displaying statistics collected by Moskito-central
Related Questions in FORMS-AUTHENTICATION
- Keeping data up to date
- MVC 5 - authorisation blues with forms authentication
- asp.net get user information from xmlhttp requests
- Web Service Call for ADFS 2.0 Authentication
- Error deploying database to SQL Azure
- SQL Server connection error with login control in asp.net after moving the project on different machine
- CurrentPrincipal.Identity.IsAuthenticated is true even after signout when FormsAuth cookie domain set manually
- ASP.Net MVC 5 using webconfig credentials and Membership.ValidateUser method
- Entity Framework Enable-Migrations –EnableAutomaticMigrations?
- Access is denied connecting to SQL Azure database
- FormsAuthentication Checking Cookie
- Why is my MVC5 App prompting me for Windows Auth when I removed Windows Auth?
- Angular 2 navigate to a different page on login
- RedirectFromLoginPage or Response.Redirect do not work with IIS10
- mvc set and get id and name in FormsAuthentication
Related Questions in ENTERPRISE-WEB-LIBRARY
- How do I cache something within a request in EWL?
- Enterprise Web Library web.config not currently compatible with Azure?
- How do you create an EWF UI page that modifies data when the user clicks a button?
- Creating read-only forms in EWL
- Why can't EWL Development Utility find Microsoft.Web.Administration assembly?
- Is AppTools.Init the only method that depends on physical configuration files?
- What use is initUserDefaultOptionalParameterPackage in EWL?
- What is the purpose of the validationErrorNotifier in generated FormItems?
- In EWL, what's the best practice for parent-page/breadcrumbs on an entity accessible by multiple roles?
- In EWL, how do I show custom validation content at an arbitrary place in the page?
- How do I start an EWL project?
- How to add custom validation with a FormItem-getter
- How do I properly set up forms authentication in EWL?
- Is there a way in EWL to dynamically set the title of the page based on my location?
- What is the correct datatype for an EWL-validated Phone Number field?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
First, create your custom log-in page. Let's call it
MyLogIn.aspx.The next step is to designate
MyLogInas the log-in page for some/all of the pages and shortcut URLs in your app. To do that for pages, overridePageInfo.LogInPageand/orEntitySetupInfo.LogInPageand return aMyLogIn.Inforeference. This setting is inherited from parent pages and entity setups. If you want all pages in your app to useMyLogIn, you only need to override theLogInPageproperty at the root of your page tree.To use
MyLogInfor your shortcut URLs, use thelogInPageGetteroptional parameter in theShortcutUrlResolverconstructor. Pass a function that returns aMyLogIn.Inforeference.The final step is to implement
MyLogIn. You can design the page however you want and collect whatever credentials you want, but there are a few things you need, which depend on whether you still want to use EWL's UserManagement subsystem. If you do, you need to callUserManagementStatics.SetUpClientSideLogicForLogInPostBackduring LoadData and call eitherUserManagementStatics.LogInUserorUserManagementStatics.LogInSpecifiedUserfrom aDataModification. If you are not using UserManagement, you're responsible for authenticating the user in your own fashion as part of aDataModification, before redirecting the user into the app.