--

...

Monday, 16 November 2020

Introduction to C# .NET

It  is  pure  object  oriented  programming  language.  Also  it  is  Event Driven Programming Language. It is case sensitive. It is part of Microsoft Visual Studio .Net.Microsoft Visual Studio .Net  comprises of the following : VB.Net C#.Net ASP.Net VC++.Net VJ++.Net VF#.Net After inventing Windows OS Microsoft invented Visual Studio group of languages  to  create  softwares  which  can  use  Windows  OS ...

Thursday, 30 August 2018

About Array

Often in programming we need to store values of similar data type, to do so we might require multiple variable declarations and that would be tedious to deal with.  To ease this task, we can take help of Arrays. An Array is a collection of similar type of values or similar Data Types. Data is stored in continuous memory locations. These values can be referred by single variable and the index number (position number). The index number always starts with ZERO. To access the elements of array we use FOR loop. In C Language we have:    ...

Friday, 10 August 2018

Advantages of C Programming

As C Programming is a middle level language, it includes the features of both high level and low level languages. It can be used for low-level programming, such as scripting for drivers and kernels and it also supports functions of high level programming languages. C is a structured programming language which allows a complex program to be broken into simpler programs called functions. It also allows free movement of data across these functions. C language is case-sensitive. C is highly portable and is used for system programming application...

Saturday, 4 August 2018

Print the Pyramid using C Programming

Dear friends here you will understand how to print the Pyramid in C Programming. Diagram shown below is designed as per the logic we want to thing before writing the program and then which code we have to use and where we have to place the code. If any one want more explanation please write a in comment box....

Thursday, 26 July 2018

Creating DataBase in Microsoft SQL Server

Click on Start Button in Windows and Select SQL Server Management Studio.   Give the Server Name (Machine Name)  Select Windows Authentication : User Name, Password is not required, they will be disabled, SQL Server starts directly using User Name, Password supplied while log-in to Windows. SQL Server Authentication :   User Name, Password will be enabled, SQL Server asks for User Name and Password,...

Monday, 16 July 2018

What is C Programming

C is a programming language developed at AT&T’s Bell laboratory of USA in 1972. It was designed and written by Dennis Ritchie.  Without any advertisement ‘C’ reputation spreads. Ritchie seems to be surprised that so many programmers preferred C to older languages like FORTRAN or PL / I. Possibly why C seems so popular is because it is reliable, easy and simple to use.  C was meant to be friendly, capable and reliable. Where C Stands Problem oriented languages and High Level language. These languages have been designed to...

Wednesday, 20 June 2018

Introduction to ASP.NET

To create dynamic web pages. To create web pages on the fly. To create web sites or web applications. Group of web pages is called web site. Every web page is of two types. Client side/static page Server side/dynamic page Internet : Network of networks is called Internet. Largest network in the world is Internet. The Internet is operated using Web Sites. On Internet we have to place the web site, then only we can access from any where. First of all we have to purchase web space, register it on our name, provide user...

Benefits of ASP.NET

It represents an exciting new platform for creating web sites with the .net framework, using any .net language. The benefits are, Structure ASP.NET brings structure back into programming by offering a code-behind page, which separates the client-side script and HTML from the server-side code. Layout control Using web forms in ASP.NET and positioning controls such as text boxes and buttons is easy, and VS.NET will create the appropriate HTML code for the target browser that is selected....

Friday, 8 June 2018

Creating ConnectionString by using 2-Tier and 3-Tire Architecture

...

Sunday, 3 June 2018

How to Find ConnectionString

From the Visual Studio Screen go to Server Explorer From the Server Explorer Right Click on Data Connection and then Select Add Connection Give the Server Name then Select Database and then Click on Advance Button After that you will find the Connection String ...

Saturday, 26 May 2018

Cookies

Cookies It is small amount of info stored by web server on client machine. Types of Cookies : Temperary Cookie (the info will be lost when user closes the browser or logout). Permanent Cookie(persistent cookie) : the info will be stored on client machine till the time specified). For Example UserName Password protected void Button1_Click(object sender, EventArgs e) {      ///////////////////////// temporary cookie creation     HttpCookie...

Introduction to C# .NET

It  is  pure  object  oriented  programming  language.  Also  it  is  Event Driven Programming Language. It is case sensitive. ...