Hi ,<br><br>I am about to make a simple application with Aspose.Grid but I am facing problems when tryign to apply my updates to SQL Server table ,my problem is the data that I have changed on my grid did not effect in database and the SAVE button didn't show me any response that it is working (NO POST BACK) ,I am using VS 2003 with IE 7 .<br>I put the below code exactly as wriiten in "Binding Sheet With Designer" article on the Wiki which written by Henry Xu and Salman Sarfraz.<br><br>private void GridWeb1_SaveCommand(object sender, System.EventArgs e)<br>{<br>try<br>{<br>//Getting the modified data of worksheet as a DataSet<br>DataSet dataset = (DataSet)GridWeb1.WebWorksheets[0].DataSource;<br>//Updating database according to modified DataSet<br>oleDbDataAdapter1.Update(dataset);<br>}<br>finally<br>{<br>//Closing database connection<br>oleDbConnection1.Close();<br>}<br>}<br><br>I tried also to use VS 2005 but the same error occures.Also Aspose.Grid is not displaying any data when I use FireFox browser.<br><br>
Hi,
Are you using the latest version 1.8? Please check the InitializeComponent method of the page to ensure that the SaveCommand event is correctly hooked.
If clicking the save button doesn't post back, it maybe your browser's problem. Please check the IE's settings, try to clear it's file cache.
And you may post your source files here.
Thank you.