var store=Ext.getStore('Cart');
store.add(record.data);
store.sync();
The problem is how the save data from session store into the MSSQL Server 2008 and another problem is how to look if someone reply my post. Please help me
You'll probably need a file of some kind on your web server (in your case probably ASP.NET) in order to actually load the data off of your MSSQL backend. This is Ext JS, but it gives you an idea of what you would have to do in the case of MySQL and PHP: http://www.sencha.com/forum/showthre...l-to-save-data. Basically, your ASP.NET page would take the JSONP request and then make the changes to the database.