0% found this document useful (0 votes)
26 views8 pages

Wad2 2

The document describes a student experiment to create a feedback form in ASP.NET. It includes the aim, concept, and code used to design the form with fields for name, email, feedback, and a submit button. When submitted, a message is displayed. The student learned how to create feedback forms in ASP.NET using Visual Studio toolbox tools and obtained full marks for the demonstration, worksheet, and post-lab quiz.

Uploaded by

Aakanksha
Copyright
© © All Rights Reserved
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% found this document useful (0 votes)
26 views8 pages

Wad2 2

The document describes a student experiment to create a feedback form in ASP.NET. It includes the aim, concept, and code used to design the form with fields for name, email, feedback, and a submit button. When submitted, a message is displayed. The student learned how to create feedback forms in ASP.NET using Visual Studio toolbox tools and obtained full marks for the demonstration, worksheet, and post-lab quiz.

Uploaded by

Aakanksha
Copyright
© © All Rights Reserved
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/ 8

Experiment -6

Student Name: Aakanksha Kumari UID: 21MCA3223


Branch: MCA Section/Group: MCA 1(A)
Semester: 3rd Date of Performance: 20-10-2022
Subject Name: Web Application Development Lab Subject Code: 21CAP-704

Aim/Overview of the practical:


1.
2.
3. Write a program to display the following feedback form.
4.
 The different options for the list box must be ASP-XML, Dot NET, Java Pro and
Unix, C, C++.
 When the Submit Form button is clicked after entering the data, a message as
seen in the last line of the above figure must be displayed.

1. Task to be done: Create a Feedback Form.

2. Concept Used: A feedback form is a way to collect opinions about your


company’s, your school, your tuition and your business service. The goal is to gain a
better understanding of the overall user experience so you can identify areas for
improvement.

3. Code for experiment/practical:


<%@ Page Language="C#" AutoEventWireup="true"
CodeBehind="FeedBackForm.aspx.cs" Inherits="Validation.FeedBackForm" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title></title>

<style type="text/css">

body{

margin:0;

font-family: 'Montserrat', sans-serif;

background-image:linear-gradient()

.auto-style1 {

text-align: center;

.auto-style2 {

text-align: center;

font-size: larger;

.auto-style3 {

margin-left: 51px;

.auto-style4 {

margin-left:99px;
width: 319px;

height: 33px;

.agileits_w3layouts {

background:url(../images/bg2.jpg)no-repeat;

background-size: cover;

background-attachment: fixed;

</style>

</head>

<body class="agileits_w3layouts">

<form id="form1" runat="server">

<div class="auto-style1">

<div>

<h1 class="auto-style1">Feedback Form</h1>

</div>

<p class="auto-style2">

<strong>Name:&nbsp;&nbsp;&nbsp;

<asp:TextBox ID="TextBox1" runat="server" Height="30px"


Width="250px"></asp:TextBox>

</strong>

</p>

<p class="auto-style2">
<strong>E-mail:&nbsp;&nbsp;&nbsp; <asp:TextBox ID="TextBox2"
runat="server" Height="30px" Width="250px"
CssClass="auto-style3"></asp:TextBox>

</strong>

</p>

<p class="auto-style2">

<strong>Feedback:&nbsp;&nbsp;&nbsp;

<asp:TextBox ID="TextBox3" runat="server" Height="30px"


Width="288px"></asp:TextBox>

</strong>

</p>

<asp:Button ID="Button1" runat="server" Height="39px" Text="Submit"


Width="130px" OnClick="Button1_Click" />

</div>

<div id= "tes" style="background-color:lightgray; color:black; font-weight:bold;


" runat="server" class="auto-style4">

</div>

</form>

</body>

</html>
4. Result/Output/Writing Summary:
Learning outcomes (What I have learnt):

1. I have learnt about how to create feedback form in ASP.NET

2. I have use different types of toolbox in Microsoft Visual Studio.

Evaluation Grid:

Sr. No. Parameters Marks Obtained Maximum Marks


1. Demonstration and Performance 5
(Pre Lab Quiz)
2. Worksheet 10
3. Post Lab Quiz 5

You might also like