Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. finaldata = [
  2. {
  3. "fromData": [
  4. {
  5. "STNAME": "North America",
  6. "STADD1": "Route South",
  7. "STCITY": " wer",
  8. "STSTAT": "NJ",
  9. "STZIPC": "3465",
  10. "STCNTY": "USA"
  11. }
  12. ],
  13.  
  14. }
  15. ];
  16. $http.post('../services/GettRates.aspx', { msg: finaldata }).
  17. success(function (data, status, headers, config) { }).
  18. error(function (data, status, headers, config) { });
  19.  
  20. if (Request.HttpMethod == "POST")
  21. {
  22. string text = Request.Form["msg"];
  23. Response.Output.WriteLine(text);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement