dear all
i have n teir application
in UI i use llblgendatasource ,gridview, 1 textbox and button save
when clicking save goesto add record in database and bind again to grid
in save button did that
var toSave = new CODECityEntity();
toSave.ENLongDescription = txtCityLongEnglishName.Text;
//call my method to save
mySave(toSave);
// binding to grid
grid.databing();
protected void dsCity_PerformSelect(object sender, PerformSelectEventArgs2 e)
{
myClass.GetCityList(e.ContainedCollection, e.Filter);
}
my problem is the new record didn't apper
how to solve this