Question: Characteristics: Develop a new empty ASP.NET Website with following characteristics: 1. A master page that contains a header picture, a menu control with the hyperlinks

Characteristics: Develop a new empty ASP.NET Website with following characteristics: 1. A master page that contains a header picture, a menu control with the hyperlinks to all pages in your website. At least 1 menu item should have sub links. All other pages should be based on this master page. 2. A home page describing the purpose of your website 3. Add a Sign Up form containing these asp controls. But you can add some more. a. Textbox for Username b. Textbox for Password c. Textbox for Confirm Password d. Textbox for Zip Code e. Button This Sign Up should perform some validations when button is clicked: a. Username: Username should be unique (check whether username is already in database before inserting, avoid using primary key for username). b. Password and Confirm Password fields should match. Hint: Use Compare Validator c. Must fill in all the textboxes. Hint: Use RequiredField Validator d. Zip Code should be in proper format. Hint: Use RegularExpressionValidator If data in every textbox of Sign Up page is alright, store username and password in database and move to Sign In page. Hint: Can use Response.Redirect method If data in any textbox of Sign Up page is not valid, then an error message, mentioning the textboxes that are not valid, will be shown using ValidationSummary control. 4. Add a Sign In form containing button and textboxes for Username and Password. A user can sign in only when the username and password exists (i.e. matches with stored username and password in database.) 5. Make a database with at least 2 tables in local SQL SERVER database (i.e. in App_Data folder): User table (having username, password) and Product table (depends on topic). 6. A search page containing button and textbox (or dropdown) where user can search for product from Product table. 7. An update page which will allow only administrator to update and insert rows in database using a form. Hint: can provide special password to access update page. Can use data control for insert and update. Common Error: If get error like unobtrusive validation mode that required a script resource mapping named jquery, then open web.config and add:

please do it with screenshot

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!