--

...

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...

Friday, 25 May 2018

ADO.NET

ADO.NET (ActiveX Data Objects) .NET uses ADO.NET (Activex Data Objects) as its primary data access and manipulation protocol. Database programming can be done thru Controls and Coding. Database Programming can be done using MS Access, Oracle, MS SQL Server or any ODBC Complaint Database. (Open Database Connectivity). Steps for database programming : Establish connection with database using respective provider and driver. Open database. Store, Delete, Modify or Read data. Show/Process the data Close database. Required Namespaces...

Using TreeView Control

Treeview To display Text in tree fashion. Click on Edit Nodes or Nodes (from properties window) Click on Add Root Node Click on Add Child Node Type Node Text in Text property, Select Image File Name for ImageUrl property Select file name for navigation in NavigateUrl property Select True / False from Show Checkbox property Select True / False from Checked property Type _blank in Target property for opening the file in new window Select True/False from Expanded property (for Root item). Also we can specify SiteMap...

Thursday, 10 May 2018

What we can Develop by using .NET

C#.Net Console Applications Windows Applications Class Libraries User Defined Controls ASP.Net Web Applications Web Services Web Controls Windows 8 APPS Mobile Controls Mobile Applications WCF Service Application (WCF-Windows Communication Foundation) WPF Application (Windows Presentation Foundation) WPF Browser Application Silver light Application SharePoint Cloud Computing...

Sunday, 6 May 2018

What is IL Code and What is JIT ?

Q.) What is IL Code? A.) Partially Compiled code or half compiled code. Q.) Why is It half compiled and not fully compiled? A.) When we compile our CODE (OS, hardware, config) compiler who converts the source code into the machine language. When he compiles our code he takes various parameters like OS,hardware, config files. Let us consider the code which is compiled in windows 7 and as per the situation the     properties is taken like (OS, hardware, config) and optimal code is compiled as per that environment. Now if we try...

Tuesday, 1 May 2018

Characteristics of C#

Simple : C# simplifies C++ by eliminating irksome operators such as ->, :: and pointers. C# treats integer and Boolean data types as two entirely different types. This means that the use of = in place of == in if statements will be caught by the compiler. Consistent : C# supports an unified type system which eliminates the problem of varying ranges of integer types. All types are treated as objects and developers can extend the type system simply and easily. Modern : It is modern language due to...

Features of .NET

How does .NET achieve the goal Web Services (Web services are called as Health storm service through which ones data can be utilized by other people without re-entry of the data of the client). The centre of the .NET architecture. ADO.Net Datasets & XML support through out the platform (Allows access to disconnected distributed databases. It creates Dataset containing database schemas). In .NET framework common data types are defined using this data type you can share data between different applications and Microsoft has told to all the...

Introduction to C# .NET

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