Base solution for your next web application

Activities of "wangwei22"

Thanks for above all.

I'v found the reason, my cookie is polluted, everything goes well after I clear the cookies.

Following the new doc, I go it. Thanks a lot.

Hi, I need more help. Now I still get the the wrong local message when I learning the sample in Module Zero. When I try to add a question, a exception is thrown in QuestionAppService, then I get the follow error: "An internal error occurred during your request!"

How can I localize it?

PS. Here is what did I do:

  1. Build a language file(actually is Chinese, already added in Module Zero) and add it to Location directory in Web project.
|--Localization
|----AbpExtends
|------AbpExtends.en.xml
|------AbpExtends.xml
  1. Add follow codes in Web project's preinitialize:
Configuration.Localization.Sources.Add(
                new XmlLocalizationSource(
                    "AbpExtends",
                    HttpContext.Current.Server.MapPath("~/Localization/AbpExtends")
                    )
                );
Showing 1 to 4 of 4 entries