<script>                var countries = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('name'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 10,
prefetch: {
// url points to a json file that contains an array of country names, see
// https://github.com/twitter/typeahead.js/blob/gh-pages/data/countries.json
url: '../Json/countries.js'
,
// the json file contains an array of strings, but the Bloodhound
// suggestion engine expects JavaScript objects so this converts all of
// those strings
filter: function (list) {
return $.map(list, function (country) { return { name:country }; });
}
}
});


// kicks off the loading/processing of `local` and `prefetch`
countries.initialize();


// passing in `null` for the `options` arguments will result in the default
// options being used
$('#prefetch .typeahead').typeahead(null, {
name: 'countries',
displayKey: 'name',
// `ttAdapter` wraps the suggestion engine in an adapter that
// is compatible with the typeahead jQuery plugin
source: countries.ttAdapter()
});
</script>

این اسکریپت هست و چیزخاصی نداره .
من میخام با این اسکریپت اسم کشور ها رو بهطور لیست شونده بگیرم.
حالا من از این
"Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Angola","  Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Åland","Aze  rbaijan","Bosnia and Herzegovina","Barbados","Bangladesh","Belgium","Bu  rkina Faso","Bulgaria","Bahrain","Burundi","Benin","Sain  t Barthélemy","Bermuda","Brunei","Bolivia","Bonaire  ","Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Co  cos [Keeling] Islands","Congo","Central African Republic","Republic of the Congo","Switzerland","Ivory Coast","Cook Islands","Chile","Cameroon","China","Colombia","Co  sta Rica","Cuba","Cape Verde","Curacao","Christmas Island","Cyprus","Czechia","Germany","Djibouti","D  enmark","Dominica","Dominican Republic","Algeria","Ecuador","Estonia","Egypt","W  estern Sahara","Eritrea","Spain","Ethiopia","Finland","Fi  ji","Falkland Islands","Micronesia","Faroe Islands","France","Gabon","United Kingdom","Grenada","Georgia","French Guiana","Guernsey","Ghana","Gibraltar","Greenland"  ,"Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala","Guam","Guinea-Bissau","Guyana","Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","I  ndonesia","Ireland","Israel","Isle of Man","India","British Indian Ocean Territory","Iraq","Iran","Iceland","Italy","Jersey  ","Jamaica","Jordan","Japan","Kenya","Kyrgyzstan",  "Cambodia","Kiribati","Comoros","Saint Kitts and Nevis","North Korea","South Korea","Kuwait","Cayman Islands","Kazakhstan","Laos","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania","Luxembourg  ","Latvia","Libya","Morocco","Monaco","Moldova","M  ontenegro","Saint Martin","Madagascar","Marshall Islands","Macedonia","Mali","Myanmar [Burma]","Mongolia","Macao","Northern Mariana Islands","Martinique","Mauritania","Montserrat","M  alta","Mauritius","Maldives","Malawi","Mexico","Ma  laysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua","Netherlands","Norwa  y","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia","Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestine","Portugal","Palau","Paraguay","Q  atar","Réunion","Romania","Serbia","Russia","Rwan  da","Saudi Arabia","Solomon Islands","Seychelles","Sudan","Sweden","Singapore"  ,"Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname","South Sudan","São Tomé and Príncipe","El Salvador","Sint Maarten","Syria","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo","Thailand","Tajikistan","Tokel  au","East Timor","Turkmenistan","Tunisia","Tonga","Turkey","  Trinidad and Tobago","Tuvalu","Taiwan","Tanzania","Ukraine","Ug  anda","U.S. Minor Outlying Islands","United States","Uruguay","Uzbekistan","Vatican City","Saint Vincent and the Grenadines","Venezuela","British Virgin Islands",'U.S. Virgin Islands',"Vietnam","Vanuatu","Wallis and Futuna","Samoa","Kosovo","Yemen","Mayotte","South Africa","Zambia","Zimbabwe"]

برای اسم کشور ها استفاده میکنم. اما چطوری باید تو asp.net mvcیه json درست کرد و و بعد از طریق usrl ازش استفاده کرد؟
نکته تو اسکریپت این 'name رو میبینید . ایا تو json باید تغییرش داد این مقدار های بالایی رو یعنی داخل متغییرری به ایم name ریخت؟؟؟
لطفا" هر کسی هر چی میدونه بگه.