The document outlines a series of tasks for creating various ASP.Net applications, including forms for loan calculations, flower selection, perfect number validation, and employee management. It also includes user authentication, database connectivity, and UI enhancements such as color changes on mouse events. Each task emphasizes user input validation and interaction with web controls.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
8 views3 pages
Net
The document outlines a series of tasks for creating various ASP.Net applications, including forms for loan calculations, flower selection, perfect number validation, and employee management. It also includes user authentication, database connectivity, and UI enhancements such as color changes on mouse events. Each task emphasizes user input validation and interaction with web controls.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3
1. Design a web application form in ASP.
Net having loan amount, interest rate
and duration fields. Calculate the simple interest and perform necessary validation i.e. Ensures data has been entered for each field. Checking for non-numeric value. Assume suitable web-form controls and perform necessary validation. 2. Write ASP.Net program that displays the names of some flowers in two columns. Bind a label to the RadioButtonList so that when the user selects an option from the list and clicks on a button, the label displays the flower selected by the user. 3. Write a ASP.Net program to accept a number from the user in a textbox control and throw an exception if the number is not a perfect number. Assume suitable controls on the web form. 4. List of employees is available in listbox. Write ASP.Net application to add selected or all records from listbox to Textbox (assume multi-line property of textbox is true). 5. Create an application in ASP.Net that allows the user to enter a number in the textbox named "getnum". Check whether the number in the textbox "getnum" is palindrome or not. Print the message accordingly in the label control named lbldisplay when the user clicks on the button "check". 6. Write ASP.Net program to connect to the master database in SQL Server in the Page_Load event. When the connection is established, the message “Connection has been established” should be displayed in a label in the form . 7. Write a ASP.Net program that gets user input such as the user name, mode of payment, appropriate credit card. After the user enters the appropriate values the Validation button validates the values entered. 8. Write ASP.Net program that displays a button in green color and it should change into yellow when the mouse moves over it. 9. Write ASP.Net application to create a user control that contains a list of colors. Add a button to the Web Form which when clicked changes the color of the form to the color selected from the list. 10.Write ASP.Net program to create a user control that receives the user name and password from the user and validates them. If the user name is "DYP" and the password is "Pimpri", then the user is authorized, otherwise not. 11.Write ASP.Net program containing the following controls: • ListBox • Button • Image • Label The listbox is used to list items available in a store. When the user clicks on an item in the listbox, its image is displayed in the image control. When the user clicks the button, the cost of the selected item is displayed in the control. 12."How is the book ASP.NET with C# by Wrox publication?" Give the user three choices : i)Good ii)Satisfactory iii)Bad. Provide a VOTE button. After user votes, present the result in percentage using labels next to the choices. 13.Write a Web application in ASP.Net that generates the “IndexOutOfRange” exception when a button is clicked. Instead of displaying the above exception, it redirects the user to a custom error page. All the above should be done with the trace for the page being enabled. 14.Write ASP.Net application for the following: 1. Create a table EMP(eno, ename, edesignation, salary, joindate) 2. Insert a Record. 3. Update a record. 15.Create the application in ASP.Net that accepts name, password ,age , email id, and user id. All the information entry is compulsory. Password should be reconfirmed. Age should be within 21 to 30. Email id should be valid. User id should have at least a capital letter and digit as well as length should be between 7 and 20 characters. 16.Create a Web Application in ASP.Net to display all the Empname and Deptid of the employee from the database using SQL source control and bind it to GridView. Database fields are(DeptId, DeptName, EmpName, Salary). 17.Write a ASP.Net program to create a Login Module which adds Username and Password in the database. Username in the database should be a primary key. 18.Create a web application in ASP.Net which may have a textbox. Now user must type some data into it, the data he can enter is only 255 characters. After he crosses the limit then the last word should not by typed and at the same time color of textbox should be red.