| jquery Programming Glossary: carnameCreating JSON return “strings” from a webservice for use with jquery ajax http://stackoverflow.com/questions/4383098/creating-json-return-strings-from-a-webservice-for-use-with-jquery-ajax  var cmd sqlc.CreateCommand cmd.CommandText SELECT CarID CarName FROM tblCars using var reader cmd.ExecuteReader  string sCar.. 1 for int i 0 i testcount i   reader.Read  sCar reader CarName .ToString  return sCar Car_1  So my questions are Where does.. ajax data to look something like this TotalCars x CarList CarName x1 CarID id1 CarName x2 CarID id2 So then with jquery I can.. 
 Creating JSON return “strings” from a webservice for use with jquery ajax http://stackoverflow.com/questions/4383098/creating-json-return-strings-from-a-webservice-for-use-with-jquery-ajax  Security True Connect Timeout 30 User Instance True  sqlc.Open var cmd sqlc.CreateCommand cmd.CommandText SELECT CarID CarName FROM tblCars using var reader cmd.ExecuteReader  string sCar  int testcount 1 for int i 0 i testcount i   reader.Read  sCar.. using var reader cmd.ExecuteReader  string sCar  int testcount 1 for int i 0 i testcount i   reader.Read  sCar reader CarName .ToString  return sCar Car_1  So my questions are Where does the 'd' in firebug come from How do I build 'JSON style' strings.. to the jquery ajax function Ideally I would wantthe jquery ajax data to look something like this TotalCars x CarList CarName x1 CarID id1 CarName x2 CarID id2 So then with jquery I can do things like alert data.TotalCars and all that sort of stuff... 
 |