Hi Carl
I got the problem. Actually in ItemDataBound event I am
modifying the Cells structure ( I am making Colspan of
some of the rows to 3 & also deleting some columns
according to my business functionality). This is working
fine if I click on Delete button because on onclick of
this button I am binding data to datagrid which makes the
proper structuring of all the cells in ItemDatabound event
& data is displayed properly in Datagrid. But when I click
on SaveData button I am not binding data to datagrid which
do not make to fire ItemDataBound event & because of which
proper structuring of data do not take place & I get
scattered data in datagrid.
Now what my problem is, I thought earlier that even if
you make changes in Cells structure of datagrid you don't
need to bind data in postback event since viewstate will
maintain the Cells structure & data. So it seems now that
this statement is wrong. Can you through a light on this
statement. I mean whether this statement is right or wrong.
Regards
Vinayak
-----Original Message-----
Vinayak,
Just a guess here (since you didn't post any code).
In the Page_Load event, do you have a "If Not
Page.IsPostBack Then"around the code where you are doing the initial data
binding?
Also, have you implemented any other event handlers for
the DataGrid?If so, what are you doing in those events? etc...
Make sure you've installed the latest .NET Framework
Service Packhttp://msdn.microsoft.com/netframewo...oads/updates/d
efault.aspx
If you are still having problems, post some code which
repros the problem.
--
Thanks,
Carl Prothman
Microsoft ASP.NET MVP
http://www.able-consulting.com
"vinayak" <na*************@hotmail.com> wrote I am displaying data in Datagrid in ASP.NET with
Edit/Update functionality for each row. On the same
page I have 2 Button controls which submits the request to
server. These button controls are Web Control & not HTML
control. One of these buttons whose title is Delete is
added on the aspx page in design view & also I double
clicked on this button in design view to get the onclick
code for this button in the code behind page. & for
creating the other button whose title is say SaveData I
copied the aspx syntax of the first button & also the
code behind code for Click event of this button. I have
taken care to give diferent id to both of these buttons.
Now there are 2 rows displayed in the datagrid &
both of these buttons are at the bottom. When I click on
Delete button (one which was added in design mode)
the request goes to the, server since there is no code
written in the onclick event of this button page gets
loaded with same data as it is. This is fine
But when I click on SaveData button (one which was
created by copying the aspx & aspx.cs code) request goes
to the server & even though the onclink event for
this button doesn't have any code to execute, the page
gets loaded with disturbed datagrid structure. In the
page the data is scattered because of uneven colspan for any
row gets added. I tried to debug the solution , then I
found even I am not binding any datasource in the
Postback on onclick of savedata button the ItemCreated event of
the datagrid gets fired which randomly sets any colspan to
the cells which are created, because of which I gets
scattered data when this data is rendered into the browser.
I didn't find any reason how this should happen in
Item created event.
I would be thankfull if anybody could suggest me
proper solution
Regards
Vinayak
.