Microsoft
Software
Hardware
Network
Question : How to add Button control to DataList control
I get the postback error below when i click my button control. How do i fix this isue? My code is listed below.
Server Error in '/' Application.
--------------------------
----------
----------
----------
----------
----------
----
Invalid postback or callback argument. Event validation is enabled using
in configuration or <%@ Page EnableEventValidation="tru
e" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.Regist
erForEvent
Validation
method in order to register the postback or callback data for validation.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Invalid postback or callback argument. Event validation is enabled using
in configuration or <%@ Page EnableEventValidation="tru
e" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.Regist
erForEvent
Validation
method in order to register the postback or callback data for validation.
//////////////////////////
////// source code
//////////////////////////
/////// codebehind
private void Page_Load(object sender, System.EventArgs e)
{
ArrayList al = new ArrayList();
al.Add(new myClass("Peter"));
al.Add(new myClass("Mary"));
DataList1.DataSource = al;
DataList1.DataBind();
}
Answer : How to add Button control to DataList control
If(!IsPostBack)
{
BindGrid();
}
private void BindGrid()
{
ArrayList al = new ArrayList();
al.Add(new myClass("Peter"));
al.Add(new myClass("Mary"));
DataList1.DataSource = al;
DataList1.DataBind();
}
try this and let me know the status
Random Solutions
Windows 2000 theme
Create batch .bat file that does not wait for an application
Expanding Fields in MS Access Report
How to target search core results to an audience
ADMT 3.0 example include file
Exchange Tabs missing in ADUC and Windows 7/ESM7
MSCom1 control returns objectrequired - what am I doing wrong?
Out-of-Office rule doesn't forward emails sent to distribution list
Outlook 2007 is "Always on Top"
odbc--insert on linked table