สอบถาม error หน่อยค่ะ มันผิดตรงไหน....The type 'Editdata' already contains a definition for 'AddButton_Click'
มันขึ้น error มาแบบนี้ค่ะ
The type 'Editdata' already contains a definition for 'AddButton_Click'
โค้ดค่ะ
Code (C#)
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 Editdata : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GridviewData data = new GridviewData();
GridView1.DataSource = data.GetAllData();
GridView1.DataKeyNames = new string[] { "id" };
GridView1.RowDataBound += new GridViewRowEventHandler(GridView1_RowDataBound);
GridView1.SelectedIndexChanged += new EventHandler(GridView1_SelectedIndexChanged);
GridView1.DataBind();
AddButton.Click += new EventHandler(AddButton_Click);
EditButton.Click += new EventHandler(EditButton_Click);
DeleteButton.Click += new EventHandler(DeleteButton_Click);
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick", Page.ClientScript.GetPostBackEventReference((GridView)sender, string.Format("Select${0}", e.Row.RowIndex.ToString())));
e.Row.Attributes.Add("onmouseover", "javascript:this.style.backgroundColor='#EFF3FB'; this.style.cursor='pointer'");
e.Row.Attributes.Add("onmouseout", "javascript:this.style.backgroundColor='#FFFFFF';");
}
}
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
GridView1.SelectedRow.Attributes.Clear();
}
protected void AddButton_Click(object sender, EventArgs e) ===>>มัน error ตรงนี้ค่ะ
{
GridviewData data = new GridviewData();
data.AddData();
GridView1.SelectedIndex = -1;
GridView1.DataSource = data.GetAllData();
GridView1.DataBind();
}
protected void EditButton_Click(object sender, EventArgs e)
{
if (GridView1.SelectedIndex > 0)
Response.Redirect(string.Format("~/edit2.aspx?id={0}", GridView1.DataKeys[GridView1.SelectedIndex].Value.ToString()));
}
protected void DeleteButton_Click(object sender, EventArgs e)
{
if (GridView1.SelectedIndex > 0)
{
GridviewData data = new GridviewData();
data.DeleteData(int.Parse(GridView1.DataKeys[GridView1.SelectedIndex].Value.ToString()));
GridView1.SelectedIndex = -1;
GridView1.DataSource = data.GetAllData();
GridView1.DataBind();
}
}
}
รบกวนด้วยน่ะค่ะTag : - - - -
Date :
2010-07-19 09:18:11
By :
pucca
View :
1344
Reply :
9
กำหนดชื่อ method ไปซ้ำกับ method หรือตัวแปรใน class เดียวกันครับ (ไปซ้ำตรงไหนก็ไม่รู้)
ลองเปลี่ยน บรรทัดที่ 25 เป็น
Code (C#)
AddButton.Click += new EventHandler(AddButton_Click1);
กับ บรรทัดที่ 45 เป็น
Code (C#)
protected void AddButton_Click1(object sender, EventArgs e)
จะให้ดีเอา .aspx มาด้วยดีกว่า ผมว่ามันซ้ำหน้านั้นแหละ
Date :
2010-07-19 09:29:43
By :
tungman
ขอบคุณมากๆๆ ค่ะ
Date :
2010-07-19 09:34:33
By :
pucca
ปล. โค้ดคุ้นๆ นะ เป็น asp.net ajax ด้วยปะ
Date :
2010-07-19 09:38:52
By :
tungman
สงสัยคงจะซ้ำในหน้านี้อ่ะค่ะ เพราะแก้ตามข้างบนแล้ว ยังไม่ได้ค่ะ
Code (C#)
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Editdata.aspx.cs" Inherits="Editdata" %>
<!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 id="Head1" runat="server">
<title>CEC STOCK</title>
<style type="text/css">
body {
background-color: #FFF5EE;
font-size:12px;
}
div#wrapper {
width: 80%;
background-color:#FFFAF0;
margin-top: 40px;
margin-bottom: 40px;
margin-left: auto;
margin-right: auto;
padding: 0px;
border: thin solid #FF66FF;
}
div#header {
padding: 15px;
margin: 0px;
text-align: center;
background-color: #FFCCFF;
color: White;
}
div#nav {
width: 19%;
padding: 10px;
margin: 5px;
float: left;
background-color: #FFCCFF;
height: 233px;
}
div#main {
margin-left: 24%;
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
padding: 10px;
border: thin solid #FF66FF;
height: 389px;
width: 441px;
}
div#footer
{
padding: 10px;
margin: 0px;
border-top: thin solid #FF66FF;
text-align: center;
color: White;
font-weight: bold;
background-color: #FFCCFF;
clear: both;
}
.BulletList
{
margin-top: 10px;
margin-bottom: 10px;
padding-left: 20px;
}
.style11
{
height: 406px;
width: 492px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="wrapper">
<div id="header">
<h1 style="width: 584px">
<asp:Label ID="HeaderLabel" runat="server" Text="Header"></asp:Label>
</h1>
</div>
<div id="nav" align="center">
<br />
<asp:Button ID="Button1" runat="server" BorderColor="White"
BorderStyle="Outset" Font-Bold="True" Font-Size="Large" Height="35px"
Text="เมนูหลัก" Width="130px" />
<br />
<asp:Button ID="Button2" runat="server" BorderColor="White"
BorderStyle="Outset" Font-Bold="True" Font-Size="Medium" Height="35px"
Text="เปลี่ยนรหัสผ่าน" Width="130px" />
<br />
<asp:Button ID="Button3" runat="server" BorderColor="White"
BorderStyle="Outset" Font-Bold="True" Font-Size="Medium" Height="35px"
Text="จัดการวัสดุ" Width="130px" />
<br />
<asp:Button ID="Button4" runat="server" BorderColor="White"
BorderStyle="Outset" Font-Bold="True" Font-Size="Medium" Height="35px"
Text="เบิกวัสดุ" Width="130px" />
<br />
<asp:Button ID="Button5" runat="server" BorderColor="White"
BorderStyle="Outset" Font-Bold="True" Font-Size="Medium" Height="35px"
Text="สืบค้นวัสดุ" Width="130px" />
<br />
<asp:Button ID="Button6" runat="server" BorderColor="White"
BorderStyle="Outset" Font-Bold="True" Font-Size="Medium" Height="35px"
Text="ออกจากระบบ" Width="130px" />
</div>
<div id="main">
<div class="style11">
<asp:ScriptManager ID="ScriptManager2" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="AddButton_Click" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="DeleteButton_Click" EventName="Click" />
</Triggers>
<ContentTemplate>
<asp:GridView ID="GridView1" runat="server" CellPadding="3" BackColor="#DEBA84"
BorderColor="#DEBA84" BorderStyle="None" BorderWidth="1px" CellSpacing="2"
Width="252px">
<HeaderStyle BackColor="#A55129" Font-Bold="True" ForeColor="White" />
<FooterStyle BackColor="#F7DFB5" ForeColor="#8C4510" />
<RowStyle BackColor="#FFF7E7" ForeColor="#8C4510" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#738A9C" ForeColor="White" Font-Bold="True" />
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>
<asp:Button ID="AddButton_Click" runat="server" Text="Add" />
<asp:Button ID="EditButton_Click" runat="server" Text="Edit" />
<asp:Button ID="DeleteButton_Click" runat="server" Text="Delete" />
</div>
<br />
</div>
<div id="footer">
<asp:Label ID="Label1" runat="server" Text="Footer"></asp:Label>
</div>
</div>
</div>
</form>
</body>
</html>
Date :
2010-07-19 09:40:19
By :
pucca
ก้อ หนูได้ตัวอย่างจากใน thaicreate นี้แหละค่ะ ก้อเลยไปทำดูแล้วมัน error อ่ะค่ะ
Date :
2010-07-19 09:42:44
By :
pucca
ชัดเลย บรรทัด 136 167 138
Code (C#)
<asp:Button ID="AddButton_Click" runat="server" Text="Add" />
<asp:Button ID="EditButton_Click" runat="server" Text="Edit" />
<asp:Button ID="DeleteButton_Click" runat="server" Text="Delete" />
บรรทัด 120 121 ด้วย
Code (C#)
<asp:AsyncPostBackTrigger ControlID="AddButton_Click" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="DeleteButton_Click" EventName="Click" />
control id เป็นชื่อที่ตั้งให้ control เปลี่ยนเป็น AddButton, EditButton, DeleteButton ก็พอ
Date :
2010-07-19 09:45:26
By :
tungman
แก้ได้แล้วค่ะ แต่มันมา error แบบนี้ต่อ T_T
The type or namespace name 'GridviewData' could not be found (are you missing a using directive or an assembly reference?)
Code (C#)
protected void Page_Load(object sender, EventArgs e)
{
GridviewData data = new GridviewData(); ====>>>ตรงนี้ค่ะ
GridView1.DataSource = data.GetAllData();
GridView1.DataKeyNames = new string[] { "id" };
GridView1.RowDataBound += new GridViewRowEventHandler(GridView1_RowDataBound);
GridView1.SelectedIndexChanged += new EventHandler(GridView1_SelectedIndexChanged);
GridView1.DataBind();
AddButton.Click += new EventHandler(AddButton_Click);
EditButton.Click += new EventHandler(EditButton_Click);
DeleteButton.Click += new EventHandler(DeleteButton_Click);
}
Date :
2010-07-19 10:08:47
By :
pucca
ก็อบมาก็ก็อบไม่ครบ กลับไปดูที่ก็อบมาใหม่ไป
มันเป็น class นึงในนั้นแหละ ไม่มีศิลปะในการลอกเลย
Date :
2010-07-19 10:18:26
By :
tungman
ค่ะ โดนเรยย ขอบคุณมากๆน่ะค่ะ
Date :
2010-07-19 10:23:42
By :
pucca
Load balance : Server 01