ASP.NET

  • ,

    Onion Architecture Vs Clean Architecture

    .

    In this article, we are going to learn about Onion Architecture vs Clean Architecture. These architectures play a key role when we build large and complex projects which require regular enhancements and extensions.Here, we will understand Onion architecture and Clean architecture in detail. Also, we will see a basic example of a .Net Core-based application…

  • ,

    What is AutoMapper in C#?

    .

    AutoMapper is used to map data between two objects. In this blog, we will see how to use AutoMapper in our application. Let’s demonstrate the use of Automapper by an example. Suppose we have a class called Employee with 2 properties in it – Name and City class Employee     {         public string Name…

  • HTTP GET Method vs HTTP POST Method

    .

    In this article, we will see the GET vs POST methods in detail.GET and POST are 2 important HTTP verbs. HTTP (Hyper Text Transfer Protocol) manages client and server request-response. HTTP GET Method www.sharepointcafe.netwww.google.com HTTP POST Method Watch this video to learn differences between GET and POST Conclusion So, we can now understand the GET…

  • Access first , 2nd, 3rd ……nth item in Repeater control

    .

    If you are an ASP.Net Developer, you must have used Repeater control to bind data from any data source. The data source could be XML, SQL etc.Rather than describing how to bind data with Repeater Control, in this blog, I will describe how to access nth item to apply CSS. I got a task where I…

  • Introduction to ASP.NET Core

    .

    In this blog, we will come to know about the open-source framework given by Microsoft i.e. ASP.Net Core. What is ASP.NET Core? The ASP.NET Core is a new open-source framework introduced by Microsoft. Originally it was called ASP.Net 5 but later renamed to ASP.Net Core and released the first version of ASP.Net Core in the…

  • ,

    Error – Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response.

    .

    I was working on a project where I wrote a web method and called this web method from JQuery.While accessing the web method I got this error –“Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response.”In debugging, I couldn’t find any issue with the code either in C# or in JQuery.Then I…

  • Introduction to .Net Core 2.0

    .

    If you are new to .Net Core, please read my earlier blog on .Net Core 1.0 Recently Microsoft released .Net Core 2.0 i.e on 14th Aug 2017. So developer like you and me can start developing .Net Core 2.0 application. Dot net core).Net Core 2.0 is ready to work on your local machine or on…

  • ,

    Facade Design Pattern in C#.Net

    .

    Design patterns provide efficient and re-usable solutions in software development. If you are new to Design Pattern, please read my earlier blog – Design Pattern in ASP.NetFacade Design Pattern comes under Structural Design Pattern. In short, Facade means the exterior appearance. It means in Facade design pattern we hide something and show only what actually client…

  • How to create dynamic HTML tags

    .

    How to create HTML tags dynamically? In some cases, there might be a requirement to create HTML tags dynamically. For eg, I will create below HTML structure with C# code. <ul id=”pagelist” runat=”server” class=”pages”> <li class=”active” rel=”page1″>My Page Title1</li> <li rel=”page2″>My Page Title2</li> </ul> <div class=”container” id=”container” runat=”server”> <h3 rel=”page1″></h3> <div id=”page1″>    </div> <h3…

  • How to maintain page scroll position after page post back in asp.net

    .

    In this blog, I will write about How to maintain page scroll position after page post back in ASP.Net. Suppose there is a page with a huge number of inputs and in one case some error/exception occurs at bottom of the page. But in the postback, the page scroll position moved to the top. In…

  • ,

    Design Patterns in ASP.Net

    .

    If you are an ASP.Net developer or any other programming technologies, then you must have came across the word Design Patter.In this blog, we will see What are design patterns and their types What are Design Patterns? Design patterns provide efficient and re-usable solutions in software development.There are several design patterns available, each patterns have…

  • ,

    Upload a file using JQuery and Generic Handler in ASP.Net

    .

    In this blog we will learn how to use jquery and generic handler in asp.net to upload a file.I have used Jquery to call a generic handler to upload a file. In this blog I have written code which accepts jpg file only and file size should not exceed 10 MB.You may customize as per…

  • Why we use Cookie?

    .

    What is Cookies? Cookies here refer as Web Cookies, HTTP Cookies is a small piece of code stored at user’s machine by bowers. Why we use Cookies ? To collect demographic information about who is visiting the Web site. Sites often use this information to track how often visitors come to the site and how…

  • ,

    Java Script Form Validation- ASP.Net Web Form

    .

    Java Script is the best way to validate a web form at client side and ensure the most accurate data to store from an HTML or asp.net web forms. In this blog, I will explain about all kind of validation that is used in an ASP.Net and HTML forms Java Script Form Validation in ASP.Net…

  • Important ASP.Net Interview Questions and Answers

    .

    In this blog, I have collected important ASP.Net interview questions and answers. Q. HTTP Handler vs HTTP Module in ASP.Net HTTP handler is a process which runs against an HTTP request. Based on file extension HTTP handler executes. Custom HTTP handler can be created on specific requirement. Generic Web handler (.ashx) – Default HTTP handler for all…

  • Caching in ASP.NET

    .

    Cache means to store it in a temp memory for future use. Caching is often used to store information that’s frequently served to users in a faster manner.In this blog, I will write about Caching in ASP.net. What is caching in ASP.Net?  Retrieving same information again and again from the actual sources does not make…

  • Three tier architecture in ASP.Net using C# code

    .

    Read my other blogs, C# 6.0 new features, ASP.Net Tutorial and .Net Core Tutorial.In this blog, we will see 3-tier architecture to develop an application in C#. What is 3-Tier Architecture? 3-Tier architecture is well known in software development for web and windows software.3-Tier architecture contains UI (Presentation) Layer, Business Logic and Data Access Layer.…

  • How to solve this error “A potentially dangerous Request.Form value was detected from the client”

    .

    If you are using .net3.5 or lower version then put this line in web.config <pages validaterequest=”false”>under <system .web=””>….</system>


RSS
YouTube
YouTube
Instagram