ASP.NET MVC app displaying weird characters -


i'm developing asp.net mvc app , today, after 1 month, uploaded new version server (discount asp.net). since that, i'm having problems display 1 of pages: http://www.jobbox.com.br/cocoonhealth/profile/gguerini invalid characters shown instead of page.

all other pages ok. tried change encoding, line breaks , etc. nothing! tested on computer , server: both places page works great, on discount.asp server, doesn't. don't know do. spent entire day trying figure out happened.

http://www.jobbox.com.br/cocoonhealth/ - home page http://www.jobbox.com.br/cocoonhealth/profile/gguerini - problem

i double check , there nothing apparently wrong. don't know so.

have seen similar before?

i appreciate help. g

go global.asax.cs file , add code in application_error event:

 httpapplication app = sender httpapplication;  app.response.filter = null; 

Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -