Skip to main content

Posts

Showing posts from 2016

10 Points to Secure Your ASP.NET MVC by- Saineshwar Bageri

    Click Here to Download       Click Here to Download

Part 2 :- Basics of Asp.Net MVC by Saineshwar Bageri

Different Types of Project Templates in Asp.Net MVC http://tutlane.com/tutorial/aspnet-mvc/different-types-of-project-templates-in-asp-net-mvc Folder Structure in Asp.Net MVC Project (Application) http://tutlane.com/tutorial/aspnet-mvc/folder-structure-in-asp-net-mvc-project-application How to Create (Add) Controller in Asp.Net MVC Application / Project http://tutlane.com/tutorial/aspnet-mvc/how-to-create-add-controller-in-asp-net-mvc-application-project Create (Add) Model in Asp.Net MVC Application / Project http://tutlane.com/tutorial/aspnet-mvc/create-add-model-in-asp-net-mvc-application-project Create Simple Asp.Net MVC Application (Sample) or Project http://tutlane.com/tutorial/aspnet-mvc/create-simple-asp-net-mvc-application-sample-or-project Tightly Coupled View (Model bounded view) in Asp.Net MVC http://tutlane.com/tutorial/aspnet-mvc/tightly-coupled-view-model-bounded-view-in-asp-n

Part 1 Free MVC Tutorial By Saineshwar Bageri

Asp.Net MVC Introduction Introduction to ASP.NET MVC or MVC Beginners Introduction http://tutlane.com/tutorial/aspnet-mvc/introduction-to-asp-net-mvc-or-mvc-beginners-introduction Why & When to Use Asp.Net MVC vs Asp.Net Webforms http://tutlane.com/tutorial/aspnet-mvc/why-when-to-use-asp-net-mvc-vs-asp-net-webforms Asp.Net MVC Architecture Example or Diagram for Beginners http://tutlane.com/tutorial/aspnet-mvc/asp-net-mvc-architecture-example-or-diagram-for-beginners Asp.Net MVC Installation or Tools for Visual Studio 2010/2012 http://tutlane.com/tutorial/aspnet-mvc/asp-net-mvc-installation-or-tools-for-visual-studio-2010-2012 Simple Asp.Net MVC Hello World Example (Program) http://tutlane.com/tutorial/aspnet-mvc/simple-hello-world-example-or-program-in-asp-net-mvc

Spire.Office for .NET

Introduction Free Spire.Doc for .NET is a Community Edition of the Spire.Doc for .NET, which is a totally free word component for commercial and personal use. As a free C#/VB.NET component, it also offers a lot of powerful functions. Developers can use it to generate, read, write, save, print and convert documents on any .NET applications. The featured function, conversion allows converting Word documents (Word 97-2003, Word 2007, Word 2010, word 2013) to commonly used file format, such as XML, RTF, TXT, PDF, XPS, EPUB, HTML and Image etc. Visit Site for Details :-  Click Here to Visit Official Site     Click here to Download Tools :- Download Here In this article we are going to learn how to generate DOC file Use Powerful tool Spire.Office for .NET Tool Required We are using Visual Studio 2012. Free Spire.Office Component [Free for commercial and personal use] Support .Net from [ 2.0 to 4.5 ] Getting Started Let’s start with creating a new project

Useful Regular Expression in C#.

Useful Regular Expression in C#. White space is not allowed (\S)+ Alphabets and Space [a-zA-Z ]+$ Alphabets ^[A-z]+$ Numbers ^[0-9]+$ Alphanumeric ^[a-zA-Z0-9]*$ Email [a-z0-9!#$%&'*+/=?^_`{|}~-]+(? :\\.[a-z0-9!#$%&'*+/=?^_`{|}~- ]+)*@(?:[a-z0-9](?:[a-z0-9-]*[ a-z0-9])?\\.)+[a-z0-9](?:[a- z0-9-]*[a-z0-9])? Mobile no. ^([7-9]{1})([0-9]{9})$ Date Format ( mm/dd/yyyy | mm-dd-yyyy | mm.dd.yyyy ) /^(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\\d\\d+$/ Website URL ^http(s)?://([\\w-]+.)+[\\w-]+ (/[\\w- ./?%&=])?$ Credit Card Numbers Visa ^4[0-9]{12}(?:[0-9]{3})?$  MasterCard ^5[1-5][0-9]{14}$  American Express ^3[47][0-9]{13}$  Decimal number ((\\d+)((\\.\\d{1,2})?))$   IFSC CODE ^[^\s]{4}\d{7}$ PAN CARD ^([a-zA-Z]){5}([0-9]){4}([a-zA-Z]){1}?$