Translate
Wednesday, 26 November 2014
Thursday, 20 November 2014
Tuesday, 11 November 2014
MVC 5
Reference:
http://www.aspdotnet-pools.com/2014/08/insert-update-delete-operation-in.html
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.
Sunday, 9 November 2014
WCF RESTful service
Reference:
http://dotnetmentors.com/wcf/how-to-create-wcf-restful-services.aspx
http://stackoverflow.com/questions/25401585/call-service-from-code-behind-scriptsame-differnt-domain
http://www.codeproject.com/Articles/722874/Post-JSON-data-to-WCF-RESTful-Service-using-jQuery
http://www.codeproject.com/Articles/167159/How-to-create-a-JSON-WCF-RESTful-Service-in-sec
http://www.aspsnippets.com/Articles/Make-AJAX-JSON-call-to-ASP.Net-WCF-Service-using-jQuery-and-Javascript.aspx
http://jonathanvanderoost.com/2014/02/08/create-restful-wcf-service-api-with-json-receive-generic-json/
http://dotnetmentors.com/wcf/how-to-create-wcf-restful-services.aspx
http://stackoverflow.com/questions/25401585/call-service-from-code-behind-scriptsame-differnt-domain
http://www.codeproject.com/Articles/722874/Post-JSON-data-to-WCF-RESTful-Service-using-jQuery
http://www.codeproject.com/Articles/167159/How-to-create-a-JSON-WCF-RESTful-Service-in-sec
http://www.aspsnippets.com/Articles/Make-AJAX-JSON-call-to-ASP.Net-WCF-Service-using-jQuery-and-Javascript.aspx
http://jonathanvanderoost.com/2014/02/08/create-restful-wcf-service-api-with-json-receive-generic-json/
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
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
MVC5 Training Video's:
http://www.lynda.com/ASPNET-tutorials/ASPNET-MVC-5-Essential-Training/170334-2.html
http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
MVC5 Fundamentals:
http://www.pluralsight.com/courses/aspdotnet-mvc5-fundamentals
MVC Video:
https://www.youtube.com/watch?v=-pzwRwYlXMw&list=PL6n9fhu94yhVm6S8I2xd6nYz2ZORd7X2v
http://www.lynda.com/ASPNET-tutorials/ASPNET-MVC-5-Essential-Training/170334-2.html
http://azure.microsoft.com/en-us/documentation/articles/web-sites-dotnet-deploy-aspnet-mvc-app-membership-oauth-sql-database/
MVC5 Fundamentals:
http://www.pluralsight.com/courses/aspdotnet-mvc5-fundamentals
MVC Video:
https://www.youtube.com/watch?v=-pzwRwYlXMw&list=PL6n9fhu94yhVm6S8I2xd6nYz2ZORd7X2v
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.
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
Bind DropDownList:
http://www.aspdotnet-suresh.com/2012/07/how-to-bind-dropdownlist-in-aspnet.html
Bind Gridview
http://www.aspsnippets.com/Articles/Bind-GridView-using-data-from-WCF-Service-in-ASPNet.aspx
Rest Services: (XML and JSON)
http://www.codeproject.com/Articles/105273/Create-RESTful-WCF-Service-API-Step-By-Step-Guide
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.c-sharpcorner.com/UploadFile/rohatash/calling-wcf-services-using-jquery/
http://stackoverflow.com/questions/25401585/call-service-from-code-behind-scriptsame-differnt-domain
call service from code behind & script(same/differnt domain)
Create and consume WCF Restful Service using an HttpClient
http://chsakell.com/2013/07/12/create-and-consume-wcf-restful-service-using-an-httpclient/Bind DropDownList:
http://www.aspdotnet-suresh.com/2012/07/how-to-bind-dropdownlist-in-aspnet.html
Bind Gridview
http://www.aspsnippets.com/Articles/Bind-GridView-using-data-from-WCF-Service-in-ASPNet.aspx
Rest Services: (XML and JSON)
http://www.codeproject.com/Articles/105273/Create-RESTful-WCF-Service-API-Step-By-Step-Guide
-------------------------------------------------------------------------------------------------------------------------
http://www.bizcoder.com/index.php/2012/01/09/httpclient-it-lives-and-it-is-glorious/
http://www.bizcoder.com/index.php/2012/01/09/httpclient-it-lives-and-it-is-glorious/
Subscribe to:
Posts (Atom)