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
How to delete a row based on the value of a cell? (macro)
Sorting a Grid View Column
Pass a selected range of cells as a paramter to a procedure
need to fix warn
how to hide a printer
somethine or a user is running sql profiler on my sql server 2008 instance - how can i identify the session
Get return value from ObjectDataSource
Reporting Services Error
Wsus WIndows 2003
GPO to enable DEP and file & print sharing