emma oj

emma oj

  • 1.4k
  • 193
  • 22.1k

cant use two buttons and a single form post

Sep 21 2015 4:45 PM
help i cant use two asp.net button and one asp.net post act
 
 
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Food1.aspx.cs" Inherits="Food1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
.style1
{
width: 165px;
}
.style2
{
width: 475px;
}
</style>

</head>
<body>
<form id="form1" runat="server" action="https://test.switch.com" method="post" >
<asp:Button ID="Button2" runat="server"  onclick="Button2_Click"  Text="Button" />
<asp:Button ID="Button1" runat="server"  onclick="Button1_Click"  Text="Button" />
</form>
</body>

</html>

 using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class fdd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{

}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("Test.aspx");
}

}

Both buttons onclick redirects to https://test.switch.com  .i want button two to redirect to Test.aspx

Answers (6)