I found most of .Net developer whether they are ASP.Net developer or MVC developer, they face to start and how to create the Angularjs application structure. In this article we will start from an empty project with Web API 2.0. First of all we will create very simple application with three three pages, home, about and contact us, latter we will use entity framework to get data from database... By Ali Adravi On 18 Jul 2015 Viewed: 3,638
Helper contains the necessary functions for you; you can call in a helper from anywhere. An example of helper is as below $helper = Mage::helper('monhelper'); The call can be related to $helper = Mage::helper('monhelper/data'); **Let's create a helper file** You will need to declare the helper in the config file in your Magento core. Configure your code in the... By Deepa Ranganathan On 17 Jul 2015 Viewed: 147
.NET web development framework was launched around 15 years ago and during all these years we have seen a lot of evolution in the framework. One of the latest and i think is by far the biggest advancement is that the the source code has now change into an opensource framework. Microsoft have alway been very reserved and concealed the code for so many years . The code is no longer copyrighted.... By Celin Smith On 16 Jul 2015 Viewed: 287
How to post the data from json, in Angularjs $http.post we get this error. why we get this error only when we try to post the json object rather than query string. When we pass the parameter in query string same action method works as it should be. It's a very simple article so we are going to check everything by opening every nut and shell. We will use Web API 2 route to customize the URL as... By Ali Adravi On 12 Jul 2015 Viewed: 15,106
When it comes to enhancing stylesheets, you should firstly understand how the CSS stylesheet for a particular platform works. It will help you control the styles, the how and where you can add the styles. You will also need to regulate the aggregates you can create, and for this purpose you need to be aware of the way you can manipulate this feature. Your styles, that you would be using, can... By Deepa Ranganathan On 09 Jul 2015 Viewed: 217
If you want to improve the interface of your Magento store, then you must include the dropdown login form. This would help create an interactive base for your consumers, and offer convenience too! Let’s see how you can include the form programmatically. Go to **app/design/frontend/base/default/layout/customer.xml** and add the code below <customer_logged_out> <!---<reference... By Deepa Ranganathan On 07 Jul 2015 Viewed: 1,182
Have you recently created a web application using Visual Studio 2015RC? Looking to integrate Facebook authentication to this web application built on ASP.Net5? Then you have hit the right keys and reached the right place. Here, you will use easy steps to integrate Facebook authentication. Now, that the app is ready, you will first need to navigate to developers.facebook.com. Here add the new... By Deepa Ranganathan On 19 Jun 2015 Viewed: 398
Smart devices are just increasing and improving with time. The digital era has definitely introduced many devices that will offer convenience and ease out your problems. With multiple platforms available for logging into your favourite store, it becomes difficult for you as a store owner or a developer to track the device the shopper is using to present themselves. A shopper might use a tablet to... By Deepa Ranganathan On 18 Jun 2015 Viewed: 192
When ASP.Net 4.5 was launched in the year 2012, you saw two new features- bundling and minification which helped reduce the file size. With these features, you could combined two or more CSS or JS files, and create a single file. The file size of this combined file is reduced with the help of minification feature. Let's understand how the bundling and minification features worked in ASP.... By Deepa Ranganathan On 15 Jun 2015 Viewed: 360
The all new version of ASP.Net, ASP.Net5 has raised significant amount of curiosity as well as discussions, even before developers have started using it. It is an open source cross platform framework that is meant to develop cloud based web applications. This all new framework contains modular components which helps you devise customized solutions while maintaining flexibility that ASP.Net5... By Deepa Ranganathan On 04 Jun 2015 Viewed: 289
Wordpress has some amazing and highly powerful themes that you can use to improve the functionality and aesthetic appeal of your website. While, there are functionalities available with these themes, you will see that there is a huge possibility of customizing the theme with some interesting code hacks! **Make Each Post Distinct** Not all blog posts are alike; so how can they be styled in a... By Deepa Ranganathan On 03 Jun 2015 Viewed: 158
If you have just started out with HTML5, then boilerplates help you reason out with the framework and help create a professional front end and a robust website. This open source project was created in order to make you HTML5 ready, in case you have just started out. You can directly download and run the boilerplate from its website; you can either download the light or customizable version,... By Deepa Ranganathan On 01 Jun 2015 Viewed: 319
**Introduction** When creating a website, developers find it challenging to implement a design that works on multiple devices, this included desktops, tablets and mobile devices. EPiServer 7 includes a new feature known as Display Channels. Display Channels allow us to control the rendering of the web pages depending on whether the request is from a mobile device or a standard device. When... By Nikunj Bhanushali On 26 May 2015 Viewed: 891
Wordpress is a popular platform among content managers as it allows you to share the content with ease. Owing to the numerous functionalities added using plug-in, Wordpress is a convenient development and delivery platform. There are many things that you may want to share using Wordpress, like a photo gallery, product information etc. Making use of an embeddable content plug-in will help achieve... By Deepa Ranganathan On 26 May 2015 Viewed: 170
If you go through the list of default page types in Wordpress, you will realize that you hardly use the archive page. It is not popular as it does not offer user friendliness. Did you know you could customize the archive page programmatically? Let's see how it's done. But, before getting started with the customization, let's try and understand the archive page. **The Default Archive... By Deepa Ranganathan On 22 May 2015 Viewed: 202
There are many instances when you want to speed-up the theme development process, and look out for ways to do it. One of the easiest methods to speed-up theme development is including bootstrap components to your wordpress theme. Here you will learn how to integrate bootstrap navbar in your Wordpress theme to speed-up the overall theme development process. **Code with Bootstrap... By Deepa Ranganathan On 20 May 2015 Viewed: 257
If you want to modify the Wordpress theme, you will need to offer customization in the function.php file within the theme. Within this file, all the relevant data related to the theme is present, and accepts unlimited number of modifications. You can get this file within the themes folder of your Wordpress website. If you want to customize your blog's behavior, then you will need to customize... By Deepa Ranganathan On 18 May 2015 Viewed: 249
In MVC we have EnumDropDownListFor which we can directly bind with our any enum, it is very similar to DropDownListFor. In this article we will try to create an enum and use it into our model and see how we can bind and save it into the database. As we know we cannot keep space in the name of emum members so how we can use a clear text into dropdown than the enum members. It is easy we will use... By Ali Adravi On 15 May 2015 Viewed: 23,357
It's always good to make your designs user friendly! When your design is intuitive, it guides your user towards the right path all the while. Navigation menus are one of the most intuitive areas of your design. You need to make sure the menus talk for themselves. Adding custom icons to your navigation menu will make the user understand where the tab will take them. Visual cues are an interesting... By Deepa Ranganathan On 14 May 2015 Viewed: 185
Quill is an open-source, rich text editor developed to add wings on JavaScript powered projects. The text editor boasts a solid architecture and a feature-rich API so that you customize it on the basis of your project needs. Developed for modern browsers, Quill is a perfect substitute for WYSIWYG editors and addresses the challenges posed by them. It works exactly as per your needs and is... By Celin Smith On 13 May 2015 Viewed: 1,010