Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
6
Answers
cant use two buttons and a single form post
emma oj
9y
416
1
Reply
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
Post
Reset
Cancel
Answers (
6
)
Next Recommended Forum
ASP.NET DLL
How to read Unicode form PDF File and Save into DataBase ?