Category: .Net Programming

SingleTon Object

Introduction Sometime we need a class that has to be instantiated only once. That means we cannot have more than one instance for a class. Here singleton comes into picture. Singleton object is not a new thing come from oops concept. Let us read how easy it is. Implementation Typically every class is instantiated using […]

SingleTon Object

Introduction Sometime we need a class that has to be instantiated only once. That means we cannot have more than one instance for a class. Here singleton comes into picture. Singleton object is not a new thing come from oops concept. Let us read how easy it is. Implementation Typically every class is instantiated using […]

OOPS Concepts and .NET Part 2 Inheritance, Abstraction, Polymorphism

Summary The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET. The first part examined the concepts of classes, objects, and structures. This part examines the concepts of inheritance, abstraction, and polymorphism. The third and last part will […]

OOPS Concepts and .NET Part 2 Inheritance, Abstraction, Polymorphism

Summary The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET. The first part examined the concepts of classes, objects, and structures. This part examines the concepts of inheritance, abstraction, and polymorphism. The third and last part will […]

Introduction to .NET Remoting – Part [1]

Click Here to visit our website Welcome to the world of Distributed Application! The article will give you introduction to the world of Distributed Application development and its respective technologies. What is Remoting? “Remoting” is the process of programs interacting across certain boundaries. The boundaries are either different processes or different machines. In .NET Framework, […]

Introduction to .NET Remoting – Part [1]

Click Here to visit our website Welcome to the world of Distributed Application! The article will give you introduction to the world of Distributed Application development and its respective technologies. What is Remoting? “Remoting” is the process of programs interacting across certain boundaries. The boundaries are either different processes or different machines. In .NET Framework, […]

Create a Working Map using Google Maps API

Click Here to visit Zonix’s Website Create a Working Map using Google Maps API   To include a Google map on an online site, you’ll need an API key which is tied to your site URL and your GMail account. First, visit http://www.google.com/apis/maps/signup.html. Make sure to read through the terms of use — there are […]

Create a Working Map using Google Maps API

Click Here to visit Zonix’s Website Create a Working Map using Google Maps API   To include a Google map on an online site, you’ll need an API key which is tied to your site URL and your GMail account. First, visit http://www.google.com/apis/maps/signup.html. Make sure to read through the terms of use — there are […]

How to add flash files to asp.net web pages

Click Here to visit Zonix’s Website <object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″ codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0” width=”540″ height=”400″ hspace=”10″ id=”ShockwaveFlash1VIEWASTEXT”> <param name=movie value=”Flash File Path”> <PARAM NAME=”quality” VALUE=”high”> <PARAM NAME=”bgcolor” VALUE=”#FFFFFF”> <param name = “wmode” value = “transparent”/> <embed src=”Flash File Path” width=”540″ height=”400″ loop=”false” quality=high pluginspage=”http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash” type=”application/x-shockwave-flash”> </embed> </object> Remember to place the Flash File inside the Project only.and give a […]