Translate

Tuesday 11 November 2014

MVC 5

Reference:

http://www.aspdotnet-pools.com/2014/08/insert-update-delete-operation-in.html

Asp.Net MVC 4 application to Create,Read,Update,Delete and Search functionality using Razor view engine and Entity Framework

Create Editable HTML Table in ASP.NET MVC for CRUD operations using KnockoutJS Framework and ASP.NET WEB API


crud opeartions with in webgrid,grid view like insert update and delete in webgrid using jquery


AJAX CRUD operations (Create, Read, Update and Delete) using GridView control in ASP.Net.







Thursday 6 November 2014

MVC Reference URL

User Registeration with Database:

http://www.mindstick.com/Articles/f769698f-fed6-43eb-8e61-d7baaf713819/

http://dotnetawesome.blogspot.in/2014/03/how-to-create-user-registration-page-in-mvc4.html

http://www.c-sharpcorner.com/UploadFile/raj1979/how-to-make-custom-login-register-and-logout-in-mvc-4-usin/

http://www.c-sharpcorner.com/uploadfile/b19d5a/custom-user-login-and-registration-page-in-Asp-Net-mvc3-with-razor-and-entity-framework/

http://geekswithblogs.net/dotNETvinz/archive/2011/06/03/asp.net-mvc-3-creating-a-simple-sign-up-form.aspx

http://www.techiesweb.net/


Scaffolding:

http://sampathloku.blogspot.in/2014/04/scaffolding-with-aspnet-mvc-5.html

https://www.asp.net/mvc/overview/getting-started/introduction/accessing-your-models-data-from-a-controller

https://visualstudiogallery.msdn.microsoft.com/811973ed-e6a9-4f38-b375-2fee9931bebd


What’s New in ASP.NET MVC 5 that make your MVC web 



ASP.NET MVC3 Vs MVC4 Vs MVC5





Tuesday 4 November 2014

Arithmetic overflow error converting numeric to data type numeric

SELECT CAST(1234567891234567.34 AS NUMERIC(18,2))  --Works
SELECT CAST(1234567891234567.34 AS NUMERIC(18,10)) --fails with Arithmetic overflow error

it is clear that, in the first case from the statement NUMERIC(18,2) the total digits are 18 and 16 digits are available to the left of decimal, whereas 1234567891234567 are 16 digits. Hence, there is no error.
In the second case, from the statement NUMERIC(18,10), 8 digits are available to the left of decimal, but 1234567891234567 are 16 digits which is more than 8 digits. Hence, Arithmetic overflow error occurs.

Monday 3 November 2014

Call WCF Service from jQuery Ajax JSON Example in Asp.net using C#

Reference:

http://www.aspdotnet-suresh.com/2013/12/call-wcf-service-from-jquery-ajax-json-example-aspnet.html

http://www.aspsnippets.com/Articles/Make-AJAX-JSON-call-to-ASP.Net-WCF-Service-using-jQuery-and-Javascript.aspx








-------------------------------------------------------------------------------------------------------------------------

http://www.bizcoder.com/index.php/2012/01/09/httpclient-it-lives-and-it-is-glorious/