There are billions of people who use smartphones, and it is growing each day. People spend half of their total screen time on phones. With the increasing usage of smartphones, mobile applications are in great demand. One of the major reasons app development companies are in huge demand. We at iQlance design, develop, and deliver innovation in applications. <br>Services we offer are: <br>**IOS... By iQlance - Top App Development Company Canada On 25 May 2022 Viewed: 622
Validation of Entity with Entity Framework is a tricky way, but it is really simple. In this article we will try to understand how easily we can add the validation with any entity created by Entity Framework with database first approach by using partial classes and pure DataAnnotation. We will not use any if.. else... or switch... case statement to validate different property. It will work with... By Ali Adravi On 08 Jul 2018 Viewed: 2,822
Multiple submit button in ASP.Net MVC is the common and mostly asked question in interview. In this article we will try to see different ways to use the Multiple submit button in a form and what is the best way to use multiple submit button. What we are going to try: 1. HTML5 FormAction and FormMethod attribute in submit buttons 2. Multiple Submit Buttons With Action Selector Attribute 3.... By Ali Adravi On 08 Oct 2017 Viewed: 7,058
What is ASP.Net Web API, what is RESTFul service, What is the difference between WCF and Web API and when to use over other. These are the main points which we going to discuss in this starting article, then we will create our own Web API project and look each and every single type of methods like get, post, put, delete. We will also use the Entity Framework to get and post the data to SQL... By Ali Adravi On 13 Jul 2017 Viewed: 1,382
JQuery, a popular open source JavaScript library, is CSS3 compliant. With JQuery, you can easily maneuver the DOM elements in your web page. Basically, it allows you to add/delete DOM elements to your HTML based content. If you want to manipulate the DOM elements using JQuery and Visual Studio, you basically need to install the following tools to your system 1. Visual Studio 2008 and 2008... By Deepa Ranganathan On 31 Aug 2015 Viewed: 907
Every developer checks for potential errors before launching the web application they have painstakingly developed. Two functionality, debugging and tracing, help track the error and remove all traces of the bug. In ASP.Net Ajax applications, debugging becomes a challenge as there is a good mix of client side and server side code, wherein the client side code contains scripts, styles and HTML... By Deepa Ranganathan On 28 Aug 2015 Viewed: 796
.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: 377
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: 509
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: 497
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: 388
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,196
When we look around in today's world, what we see is devices all around. Devices from mobiles to tablets to computers surround us and now the world is talking about internet of things. IOT means communicating between devices where each device will provide some relevant information to other so as to provide a customer with highest level of service. Example can be a Phone providing information... By Nikunj Bhanushali On 01 May 2015 Viewed: 958
ASP.NET is not just a web development platform of all the time, but a righteous web application framework of its own way. Its lofty architecture and cutting-edge features together give this framework a sense of grandeur that's absolutely hard to ignore. And since its keep on evolving itself so incredibly that we just can't resist the temptation of the updates that it continue to unroll for its... By Celin Smith On 29 Apr 2015 Viewed: 385
To post from different buttons on a single MVC page to different action methods, we need some extra code. We need to create an attribute class by inheriting ActionNameSelectorAttribute and override IsValidName method. We will use the button name to call any particular action on the basis of button name. It looks some thing very difficult but in reality it is more than easy. Let's creat our... By Ali Adravi On 26 Apr 2015 Viewed: 4,132
ASP.NET Page Life Cycle order and events Page life cycle is very important concept to understand while working with asp.net, what are the stages we can read the view state values and what is the last event where can write back our view state again. When to load the dynamic controls and when to check the values of dynamically added controls, It is impossible to work without knowing the basics of... By Hamden On 24 Jan 2015 Viewed: 3,562
Image gallery in asp.net mvc or in any other language can be achieved by using different free JavaScript libraries. What we need for a good image gallery, at least we need images in two sizes to show thumbnail and then the original image on clicking the image. In this article we will write a small method to calculate the new image size and save images in multiple sizes. To upload image we will... By Ali Adravi On 10 Jan 2015 Viewed: 35,838
To add insert, update and delete feature we are going to use bootstrap modal popup with a single JavaScript method to open any partial view as a modal popup and one method to post the data from modal, which can work for entire application. First we will add some code to our layout view to dynamically add the partial view in it and JavaScript file, then we will add code only one for add new... By Ali Adravi On 28 Dec 2014 Viewed: 49,852
Search, sort, paging, insert, update and delete with ASP.Net MVC and bootstrap modal popup and WebGrid to show records with search, sort and paging feature and in next article we will complete our article by adding insert, update and delete feature with bootstrap modal popup. We are going to use Entity Framework 6 code first model with a very simple table phone. Adding client side sorting and... By Ali Adravi On 28 Dec 2014 Viewed: 60,862
Reading and writing in xml can be done in different ways, some common classes people use are XmlTextReader, XmlTextWriter , XmlDocument but we will use XDocument. By using the other classes say XmlTextReader we need to use the while loop to read and check every node by using XmlNodeType, for a long XML file which is not suitable. We need a way to search the exact node by providing Id of the... By Ali Adravi On 20 Dec 2014 Viewed: 5,065
Convert XML or JSON into a class by using visual studio is as easy as just copy and two clicks, never matter how big or how complicated is our XML or JSON. In this article we will create some dummy XML and json and will try to convert them into class without writing a single property manually. It does not create 100% correct data type but created all the properties for. Say we have an XML or... By Ali Adravi On 20 Dec 2014 Viewed: 2,080