It's Me and I am…

Custom Validations in ASP.NET MVC(Server Side)

There are many types of validations that do allow in MVC Models such like Required Field Validator, Data Type Validator, Range Validator and etc… But there is a way that the developer can write his own Validation Rules and work with them as a normal validator that comes built-in. This is way far easier in [...]

>>

, , ,

ASP.NET Website Vs. Web Application Simple Comparison

Well, this looks much same as you see. In English, Website is a sort of a Web Application. But from the developer’s perspective, the Web Application project type and the Website Project Type have many differences. If you are a Visual Studio 2005 user, You will not get Web Application Project type if you have [...]

>>

,

Simple JSON Example in MVC

JavaScript Object Notation (JSON) is highly used in today’s communication. The main reason is that it does not depend on the programming languages that you use for programming. In simple terms, a JSON object that is returned by a .NET application can be easily read by a Java Application. The only requirement is a particular [...]

>>

, ,

Forms Authentication in ASP.NET

ASP.NET provides you a greater set of capabilities for working with a proper authentication. This is made available with the Membership Provider in it. Membership provider provides rich set of features including adding new users and assigning them specific roles. By default, once you create an ASP.NET Application (Not empty application), it provides the capability [...]

>>

, ,

Panorama and Pivot Controls in Windows Phone

Achieving higher user interactivity is a key thing in Windows Phone. There are many features provided for the developers to build their applications as it make possible. Panorama and Pivot controls are two of the most interactive features provided. Panorama control gives the user ability to create much hub-type looking applications. smooth multi screen scrolling [...]

>>

, , ,

Controller controls in MVC 3

Basically, a controller defines what are the view that should be rendered to which user and how it should be done. A controller can have a set of return types.Basically a controller looks like this. A controller action returns an action result in response to a browser request. A controller can have methods, that do [...]

>>

, ,

Partial Views in ASP.NET MVC 3

Generally, the coding that we type in the .cshtml or .vbhtml file in a MVC 3 view is rendered through a view engine. Before MVC 3 come into action, ASPX was the View engine used to render the content. MVC 3 introduces a new view engine named Razor. Razor is an effective rendering engine that [...]

>>

, , ,

Connecting Windows Phone to Database using WCF Services

Windows Phone is a fantastic creation of the decade. The capabilities that it provides with the Mango update are really cool. One solution of a person who would need storage in Windows Phone application is either to choose the Isolated Storage or connect to an external service with a service provider like Windows Communication Foundation. [...]

>>

, , ,

Entity Framework for ASP.NET MVC 3

It’s easy. How long will you need to create a full functional MVC Application? You will be able to create a fully functional ASP.NET MVC 3 application within less than 5 minutes. It will take a few mouse clicks and you will get an application that is possible of performing all CRUD(Create-Read-Update-Delete) operations. Step 1: [...]

>>

, , ,

Previous Posts