MVC: Sections DON’t Work in Partial Views
We add JavaScript or jQuery in ASP.NET MVC views in the scripts section: @section Scripts { } However, we should know above section does NOT work in partial view. What we can do are: 1: Put JavaScript...
View ArticleHow to Add 3rd Party or Custom JavaScript Files or Libraries in ASP.NET MVC 4+
If you wrote your own JavaScript or jQuery file, and it is not too big, for sure you can place it to any custom folder which you like, and drag it to your view or html file to use it. … Continue reading →
View ArticleAjax.BeginForm not work in ASP.NET MVC 4 and 4.5 ?
In newer versions of ASP.NET MVC such as 4 or 4.5, when you used Ajax.BeginForm like @using (Ajax.BeginForm("Index", "MyController”, new AjaxOptions()...
View ArticleVisual Studio 2013 does NOT support Silverlight 4-
Due to Microsoft document, Visual Studio 2013 only support Silverlight 5, it does not support all previous Silverlight versions including Silverlight 4. Check more information from .NET Framework SDKs...
View ArticleSilverlight Application Compile Failed in Visual Studio 2013
We had an ASP.NET project using Silverlight and WCF which developed in Visual Studio 2010 and Visual Studio 2012, both versions worked without any problems. From this year we tried migrate the ASP.NET...
View ArticleAdd Local Project to Visual Studio Online
Visual Studio Online is actually formally called Team Foundation Server. But it is kind of cloud system, and there should be different features compared with team foundation server system. Here we have...
View ArticleSilverlight 4 or 5 Application Supports Multiple Languages (Localize)
Silverlight can use resource to support multiple languages. We do not talk about the regular steps which how to use resource files. Here we have to know there is additional step to do in Silverlight 4...
View ArticleHow about no more Silverlight 6 ?
I am considering what solution will be a good replacing solution if Microsoft really no more have new Silverlight edition like Silverlight 6, I tried using JavaScript way (or JavaScript library such as...
View ArticleOne solution for HTTP Error 500.21 – Internal Server Error
When I set IIS web server, I met multiple times about HTTP Error 500.21 – Internal Server Error. I can not remember what the error screen exactly was, next time I must copy the screen. I always forget...
View ArticleASP.NET vNext vs ASP.NET 5
ASP.NET 5 is just ASP.NET vNext, ASP.NET formally called ASP.NET vNext. ASP.NET 5 is a significant redesign of ASP.NET. ASP.NET 5 is a new open-source and cross-platform framework for building modern...
View ArticleWhat is DNX ?
Why ASP.NET can be run on cross platforms ? It relies on DNX. DNX: .NET Execution Environment. For easily understand DNX, just think about Mono, which supports .NET in Linux system. Yes, DNX could...
View ArticleASP.NET Cross-Platform Solutions
ASP.NET applications mainly focused on Windows platform with using IIS web server which installed on Windows platform; However, we want ASP.NET applications to support different platforms such as...
View ArticleMono Supports ASP.NET 4.x Partially
I was some confused on Mono project official site information: I had question about what .NET web technologies which Mono supported. I got information that Mono currently ONLY supported ASP.NET 2 from...
View ArticleDNX for .NET Framework, .NET Core and Mono
We posted simple DNX concept before, the DNX is .NET Execution Environment. By now I have acknowledged DNX was for cross-platform ASP.NET Web applications, also for cross-platform console applications....
View ArticleThe Open Source ASP.NET 5 Has New Name ASP.NET Core 1.0
Due to Scott Hanselman’s blog, Current ASP.NET was changed name to ASP.NET Core 1.0. The main reason is that ASP.NET 5 is NOT a newer version which is to replace traditional ASP.NET (current version is...
View ArticleASP.NET Related Names and Versions: MVC, EF, Core…
Every 1 or 2 months if I did not touch the projects which were about ASP.NET related technologies, I might forget the names and versions. Let me record something here: ASP.NET 5 is ASP.NET Core 1.0...
View ArticleA Simple ASP.NET MVC Amazon Filler Items Searching Website
Update: I have released the version 2. After you read the content below, please also read the new version information. Thanks! As a practice, and replying for a friend’s request. I just wrote a simple...
View ArticleThe Amazon Filler Items Searching Website is Upgraded
I released a simple ASP.NET MVC website using Amazon service 2 days ago. I might call it MyFiller project version 1. In the 1st version, I actually have not finished all features which I wanted. So in...
View ArticleSmart Amazon Fillers Website Supports Both of Canada and USA Now
Since I met another weekend and got spare time, I did not wait long and finished urgent features on Smart Amazon Fillers website: Supporting multiple countries, and fixing pagination issue. You might...
View Article