Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

django - How to format unicode strings to utf-8 in Python? -


i'm reading in json string littered u'string' style strings. example:

 [      {       "!\/award\/award_honor\/honored_for": {         "award": {           "id": "\/en\/spiel_des_jahres"         },          "year": {           "value": "1996"         }       },        "guid": "#9202a8c04000641f80000000003a0ee6",        "type": "\/games\/game",        "id": "\/en\/el_grande",        "name": "el grande"     },      {       "!\/award\/award_honor\/honored_for": {         "award": {           "id": "\/en\/spiel_des_jahres"         },          "year": {           "value": "1995"         }       },        "guid": "#9202a8c04000641f80000000000495ec",        "type": "\/games\/game",        "id": "\/en\/settlers_of_catan",        "name": "settlers of catan"     }   ] 

if assign name = result.name. when log of pass value django template, displays u'dominion'

how format display dominion?

++ update ++

i think problem has printing values list or dictionary. example:

result = freebase.mqlread(query)  games = {} count = 0 r = result[0] name = r.name games["name"] = name, self.response.out.write(games["name"]) self.response.out.write(name) 

this displays as:

(u'dominion',)  // saved response dictionary, , printed dominion        // when calling value directly response 

i need iterate through array of json items , values being shown unicode. why?

the comma @ end of games["name"] = name, makes 1-tuple. remove it.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -