Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > สอบถาม error หน่อยค่ะ มันผิดตรงไหน....The type 'Editdata' already contains a definition for 'AddButton_Click'



 

สอบถาม error หน่อยค่ะ มันผิดตรงไหน....The type 'Editdata' already contains a definition for 'AddButton_Click'

 



Topic : 045648

Guest




มันขึ้น 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 : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-07-19 09:18:11 By : pucca View : 1344 Reply : 9
 

 

No. 1



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


กำหนดชื่อ 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
 


 

No. 2

Guest


ขอบคุณมากๆๆ ค่ะ
Date : 2010-07-19 09:34:33 By : pucca
 

 

No. 3



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ปล. โค้ดคุ้นๆ นะ เป็น asp.net ajax ด้วยปะ
Date : 2010-07-19 09:38:52 By : tungman
 


 

No. 4

Guest


สงสัยคงจะซ้ำในหน้านี้อ่ะค่ะ เพราะแก้ตามข้างบนแล้ว ยังไม่ได้ค่ะ
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
 


 

No. 5

Guest


ก้อ หนูได้ตัวอย่างจากใน thaicreate นี้แหละค่ะ ก้อเลยไปทำดูแล้วมัน error อ่ะค่ะ
Date : 2010-07-19 09:42:44 By : pucca
 


 

No. 6



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ชัดเลย บรรทัด 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
 


 

No. 7

Guest


แก้ได้แล้วค่ะ แต่มันมา 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
 


 

No. 8



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


ก็อบมาก็ก็อบไม่ครบ กลับไปดูที่ก็อบมาใหม่ไป

มันเป็น class นึงในนั้นแหละ ไม่มีศิลปะในการลอกเลย
Date : 2010-07-19 10:18:26 By : tungman
 


 

No. 9

Guest


ค่ะ โดนเรยย ขอบคุณมากๆน่ะค่ะ
Date : 2010-07-19 10:23:42 By : pucca
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : สอบถาม error หน่อยค่ะ มันผิดตรงไหน....The type 'Editdata' already contains a definition for 'AddButton_Click'
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่