PDA

View Full Version : error روی کد html



afaghmoh
یک شنبه 29 آبان 1384, 11:32 صبح
سلام بخدا مغزم دارد منفجر می شود حدود سه هفته است روی بحث اضافه کردن و ویرایش رکورد گیر کرده ام و با وجود کار فراوان در همان قدم اول مانده ام اکنون از قسمت طراحی ایراد زیر را می گیرد بخدا برای قسمت ویرایش نیز کد را نوشته ام ولی چرا ایراد می گیرد نمی دانم .منتظر جواب شما بزرگواران هستم
Server Error in '/WebApplication12' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: BC30390: 'WebApplication12.WebForm1.Private Sub DataGrid1_EditCommand(source As Object, e As System.Web.UI.WebControls.DataGridCommandEventArgs )' is not accessible in this context because it is 'Private'.

Source Error:



Line 11: <body MS_POSITIONING="GridLayout">
Line 12: <form id="Form1" method="post" runat="server">
Line 13: <asp:DataGrid id="DataGrid1" AutoGenerateColumns="false" onEditCommand="DataGrid1_EditCommand"
Line 14: onUpdateCommand="DataGrid1_UpdateCommand" onCancelCommand="DataGrid1_CancelCommand" OnDeleteCommand="DataGrid1_DeleteCommand"
Line 15: DataKeyField="StNo" HeaderStyle-BackColor="Blue" ItemStyle-BackColor="Red" ItemStyle-BorderColor="Green"


Source File: http://localhost/WebApplication12/WebForm1.aspx Line: 13

کد ویرایش نیز این است


Private Sub DataGrid1_EditCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs ) Handles DataGrid1.EditCommand
DataGrid1.EditItemIndex = e.Item.ItemIndex
bindGrid()
End Sub

Sub bindGrid()
cmdSql = New OleDbCommand("Select * from t2", con)
con.Open()
DataGrid1.DataSource = cmdSql.ExecuteReader()
DataGrid1.DataBind()
con.Close()
End Sub

Behrouz_Rad
یک شنبه 29 آبان 1384, 11:52 صبح
کلمه ی کلیدی Private را در روال EditCommand کنترل DataGrid، به Protected تغییر دهید.
موفق باشید.

afaghmoh
یک شنبه 29 آبان 1384, 11:58 صبح
خیلی ممنون آقای راد