Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace WebApplication1
- {
- public partial class WebForm1 : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- ValidationSettings.UnobtrusiveValidationMode = UnobtrusiveValidationMode.None;
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- Label7.Text = "Thanks for your feedback " + DropDownList1.SelectedValue.ToString() + TextBox1.Text;
- }
- protected void Button2_Click(object sender, EventArgs e)
- {
- TextBox1.Text = " ";
- TextBox2.Text = " ";
- TextBox3.Text = " ";
- TextBox4.Text = " ";
- TextBox5.Text = " ";
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment