Database Programming with Microsoft Access

Submitted by coderz on

Microsoft Access is a DBMS that is known to almost all of us. Most of the computer professionals must have used this DBMS at least once in their lifetime. With the help of Microsoft Access we can easily create new relational databases, insert, and update and delete data. Microsoft Access has gained more popularity with its ability to relate one or more tables in the database.

DotNetNuke (DNN) – An Introduction

Submitted by planetsourcecode on
We are going to organize a workshop in sans and the topic for that discussion will be DotNetNuke. DotNetNuke is an open source web application framework ideal for creating, deploying and managing interactive web, intranet, and extranet sites securely. It is open source framework which is providing different benefits to the users. Let us we discuss some of the major benefits by DotNetNuke.

Check Existence of File in ASP.NET and C#

Submitted by planetsourcecode on
We have to check if file exists before doing some things with that particular file. It will prevent error and work flow will be smooth, for this we have to include required namespace i.e system.IO; Using system.IO; We have to place these controls on the webpage (ASPX page) Text box with ID=Textbox1 Button with ID= button1 Label with ID= label1

The Success of SourceCodester.com

Submitted by admin on
Without you this website is useless. But because of you this website become a successful online tool for programmers who wish to contribute and share their programming expertise. I am also thankful for those who ask a challenging question about my system and other user’s source code. If not because of your critics, opinions and suggestion may be my knowledge in programming has not improved

Inventory System - MS Access version

Submitted by admin on
This is an MS Access version of the Point of Sale that I'm trying to create before. But I go on, on developing the VB version instead of MS Access. If you are studying the concept of MS Access this simple program will help you develop a relational database using various relationship like one-to-many, etc. Account information: User: admin Pass: admin

Printing in ASP.NET

Submitted by planetsourcecode on
In windows desktop application it is easy to print a form data for report or other purpose but in asp.net web form it is not easy to print a page. The printing on client side needs solutions for different conditions using JavaScript The simplest way to print a web form is to use client side JavaScript. To print a web page, you can use code like this:

Disable Right Click and Ctrl Keys in ASP.Net

Submitted by planetsourcecode on
We can easily disable right click and control keys in asp.net.In come circumstances.We want to disable the right click so that the user can not copy from or to the asp.net web page.In most of the web application it can be use in any possible condition. for doing this we have two possible ways: 1). Using asp.net method, which is used when we don't want to show message to the user