Categories
Asp, Asp.net

How to Read Word File Content in Asp.Net

How to Read Word File Content in Asp.Net In this post we will learn How to Read Word File Content in Asp.Net. For this we have to Add COM reference of Microsoft word. Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>How to Read Word File Content in Asp.Net</title> <style […]

Categories
Asp, Asp.net

How To Create Image Sprite In Visual Studio

How To Create Image Sprite In Visual Studio In this tutorial we will learn How To Create Image Sprite In Visual Studio. Image Sprite is sort of technique that combines multiple images to make single large image and website loads one image instead of all images it makes website fast. For this we have to download a […]

Categories
Asp, Asp.net

Hello World Application In MVC

Hello World Application In MVC In this post we will learn how to create a Hello World Application In MVC. Lets start with a hello world application: 1. Open Visual Studio. 2. Click on New Project or, File > New > Project. 3. Choose Asp.Net Web Application and click on ok. 4. New Window will open […]

Categories
Asp, Asp.net

What is MVC?

What is MVC? MVC or Model View Controller is a design pattern. This design pattern has been present in software applications for several decades. The Model View Controller pattern was invented in a Smalltalk context for decoupling the graphical interface of an application from the code that actually does the work. Model: Consist of Application […]