6 Answer(s)
-
0
Hi,
Is this script included in your page:
<script src="/AbpScripts/GetScripts" type="text/javascript"></script>
If so, can you check if it contains something like that:
abp.localization.values['AbpWeb'] = { 'AreYouSure' : 'Are you sure?', 'Cancel' : 'Cancel', 'InternalServerError' : 'An internal error occured during your request!', 'ValidationError' : 'Your request is not valid!', 'Yes' : 'Yes' };
-
0
Hi hikalkan,
- <script src="/AbpScripts/GetScripts" type="text/javascript"></script> bellow script has been include to page.
abp.localization.values['AbpWeb'] = { 'AreYouSure' : 'Are you sure?', 'Cancel' : 'Cancel', 'InternalServerError' : 'An internal error occured during your request!', 'ValidationError' : 'Your request is not valid!', 'Yes' : 'Yes' };
Do you mean that code in abp.js? If so, it doesn't contain bellow code.
-
0
I encountered same issue. I re-produced it and fixed it as following: 1 go to <a class="postlink" href="http://www.aspnetboilerplate.com/Templates">http://www.aspnetboilerplate.com/Templates</a> to create new project (AngularJs + Entity Framework) 2 run in local, works fine - abp.dll version is 0.5.5.0 3 Go to Nuget, update abp.dll version to 0.5.12.1 4 Run the project again, the exception "Cannot read property 'AbpWeb' of undefined" is thrown 5 Go to Nuget, update abp.web.dll to 0.5.12.0 6 run the project again, the issue is disapper. May help you.
-
0
1 go to <a class="postlink" href="http://www.aspnetboilerplate.com/Templates">http://www.aspnetboilerplate.com/Templates</a> to create a new project (AngularJs + EntityFramework) 2 Run it in local, works fine. the version of abp.dll is 0.5.5.0 3 go to nuget, update abp.dll to 0.5.12.1 4 run it again, the error "Cannot read property 'AbpWeb' of undefined" is thrown 5 go to nuget, update abp.web.dll to 0.5.12.0 6 run it agian, the issue is disapper, works fine agian. May help you.
-
0
Thanks a lot for the information sharing.
-
0
My pleasure.