Javascript let’s you enhance your webpages. Javascript can control events and even add effects to parts of your web page. Adding javascript to your asp page will definitely enhance your website. [Read more...]
ASP.NET Controls: Using AdRotator
If you wish to show ads on your webpage then adrotator control will come handy for you. This control allows you to select impressions, images and even allows you to redirect to another URL if any person clicks on image. [Read more...]
ASP.NET Books
If you’re a beginner asp.net programmer then you’ll learn most of the programming skills from MSDN videos and tutorials. But there is limitation to how much you’ll learn from tutorials and videos so you need to get a good book or ebook for yourself for good asp.net reference. There are many good books which you can keep on your desk for reference. [Read more...]
ASP.NET application folders
ASP.NET 3.5 uses file based approach and we’re allowed to create as many folders and files in our application without recompiling each and every time a new file is added to the solution. Visual studio IDE has the capability to automatically
precompile asp.net applications dynamically. [Read more...]
How to use scanner class in java ?
Whenever you want interactivity in your program then you need to get input from the user. Most of the applications require input from user and with or without modification output is displayed to user. From version 1.5 java let’s you use scanner class to get input from user and you can easily show this output on the console.
[Read more...]
Triggers in MS-SQL Server
Whenever database is modified then triggers are fired based on the event set. Two logical tables are created when triggers are fired.
[Read more...]
Using MS-SQL Server Express
Earlier I have written beginners guide on MS-SQL server. In this post i’ll cover few more things about ms-sql server which are intended towards beginners. If you are beginner then I suggest you to read this post first. [Read more...]
Smallbasic
Smallbasic is simple language targeted for beginners. It tries to make it easier for newbies to start with programming.
[Read more...]
Developing C/C++ programs under ubuntu
I already covered how to write c++ programs in linux. But in that article, i didn’t mentioned about how to install compilers and stuff. So this post will cover how to install compilers in ubuntu and to write, compile and run program. [Read more...]
Libraries and Namespaces
C++ comes with a number of standard libraries.Some libraries are commercial & limited to perticular compiler while some are included in every compiler.These libraries place their definitions inside namespace.So we’ll discuss what namespace is,but before moving onto namespace let’s clear few things about libraries. [Read more...]