0

What is CLR (Common Language Runtime) in the .NET framework

The Common Language Runtime is responsible for executing your application code. In .NET, source code is never compiled directly into the machine code. Instead the compiler converts the code into an intermediate language called MSIL(Microsoft Intermediate Language). MSIL is a low-level, platform...
1

Skype has stopped working error in Windows 7

"I recently had this same problem, where my SKYPE would quit after every 5 seconds with a message that said "Skype has stopped working.Windows will now close the program".  Here is what I did for it to work again. This worked for me, lets hope it works for you too. 1. Firstly you will need to...
0

Introduction to MVC Architecture

MVC requires .NET framework 3.5 or above. The following describes the architecture of MVC: MVC stands fro MODEL - VIEW - CONTROLLER. Controller: Controller is responsible for recieving request from the web server and identifies the action requirement . Depending on the requirement the controller contacts...
0

Read OR Write a Text file using ASP.Net

The following articles discusses, how one can read and write into a text file using ASP.net Firstly you will need to import  using System.IO; .  1. Writing to a Text File  using System;            using System.IO;             namespace yasser.howto            {                class TextFileWriter                {                static void Main(string[] args)                {                    // create a writer and open the file                    TextWriter tw = new StreamWriter(“yrus.txt”);                      // write a line of text to the file                    tw.WriteLine("Line...
0

Setup FTP server using IIS in Windows 7

Firstly, Please be patient and let all the images load, this will help you understand things better. (click on the image to ENLARGE!) Start your IIS Manager. The version of IIS Manager that I have used is 6.0. The IIS Manager looks like as shown below. Now as you can see, I already have 2 website...
3

Setup FTP server using IIS in Windows 7

Start your IIS Manager. The version of IIS Manager that I have used is 6.0. The IIS Manager looks like as shown below. Now as you can see, I already have 2 website and 1 FTP site configured. Ignore them for now, Lets create a new FTP site.Right Click...
0

How many column and rows are there in Microsoft Excel 2007

The last cell in EXCEL 2007 is : XFD104857...
0

State Management in ASP.Net

WHAT IS STATE MANAGEMENT, NEED? Whenever a page is posted to the server, a new instance of the Web Page’s class is created. This means that all the page/control related information will be lost after the post back. To overcome this obstacle, ASP.net provides several options to help preserve this...
0

Me n DALE STYN

Its me with the south african pacemen DALE STYN, Location:Colaba Causeway y...
0

Imperative v/s Declarative Statements

Imperative statements are those statements that are written programmatically, whereas Declarative statements are those statement that are not written programmatically, they are written using scripts, using wizards(mouse click interfaces) and various other means but not programmatical...
0

Object Oriented Programming Concepts

PAGE UNDER CONSTRUCTION 1. What is OOPS ? Object-oriented programming (OOP) is a programming paradigm using "objects" (data structures consisting of data fields and methods together with their interactions) to design applications and computer programs. 2.What is an Object? >> An object...
0

Call a Javascript function from C#

There are many ways in which you can call a javascript method from your .cs file. The following 2 are best (easiest ;P ) method. Consider a sample .aspx file as below, where we have a javscript method named - callMe(), our aim in this tutorial is to call this method by using c# code. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Resultmaker.ProjectList.WebForm1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body><script type="text/javascript">    function callMe() {        alert("call successfull");    }</script>    <form id="form1" runat="server">    <div>        </div>    </form></body></html> In...
 

2011 ·Code-Studio by yrus.