Search
Should I Save Images to Database or File System
Submitted by arjay_nacion on Sun, 12/13/2009 - 17:07It's been an issue for some time for developers the question of whether to save images on database or on file system. I decided to write this article to explain the pros and cons of both sides.
- 2 comments
- Read more
- 669 reads
Visual Basic and MySQL
Submitted by admin on Wed, 08/05/2009 - 18:36One of the best Database Server today besides from Oracle and Microsoft SQL Server is MySQL.
- Add new comment
- Read more
- 1581 reads
C# and .NET
Submitted by bunnyboxy on Wed, 07/22/2009 - 16:07C# (pronounced C-Sharp) is no doubt a language of choice in the .Net environment. It is a whole new language free of the backward compatibility curse with a whole bunch of new, exciting and promising features. It is an Object Oriented Programming language, and has at it's core many similarities to Java, C++ and VB.
- Add new comment
- Read more
- 772 reads
Adding minutes to a datetime variables
Submitted by planetsourcecode on Fri, 07/10/2009 - 02:51Sometime we stuck in a problem in which we have to get a time which is after 20 or 60 minutes then there is simple function which can add minutes to a particular datetime variable
take an example we want to add 60 minutes to present time, for this we simply do is make an 2 objects of current datetime class i.e. date1 and date2- Add new comment
- Read more
- 1654 reads
Using CDOSYS to Send Email especially for Godaddy
Submitted by planetsourcecode on Fri, 07/10/2009 - 02:49Here is the code to send Email from your website.I had tested this code on My Godaddy Web hosting and it was perfectly working.
The things need to be change is in Red colour
// language -- C#
// import namespace
using System.Web.Mail;private void SendEmail()
{
// Don't change this if you are using godaddy otherwise mention your smtp server name.Writing Maintainable Codes
Submitted by arjay_nacion on Mon, 07/06/2009 - 12:38When working on a project where in you have to add features to an existing code written by other members of your team, you may have encountered problems understanding parts of the code. Sometimes the problems are caused by codes not well commented or sometimes the codes are simply unreadable.
Take this code for example:
- 2 comments
- Read more
- 611 reads
C# language syntax and statement
Submitted by planetsourcecode on Sun, 07/05/2009 - 21:10This article will show and explain you the C# language syntax and statement.
1). Declaring a variable
- int a;
- int age,salary;
- int num=8;
- string name;
- string fullname=”amar”;
2). Loop
- int i=0;
- While(i<5)
- {
- Console.WriteLine(i);
- ++i;
- }
Output:--
0
1
2
3
43). For Loop
- int i=0;
- for(int i=0;i<5;i++)
- {
- Console.WriteLine(i);
- 2 comments
- Read more
- 473 reads
Introduction to Microsoft .Net Framework
Submitted by planetsourcecode on Sun, 07/05/2009 - 21:05.Net is the development platform for the future by Microsoft. The aim of Microsoft is to work in a distributed environment. There are may reasons behind this vision first , it will encourage classes/codes to be organized in one place rather then they are distribute in many places, earlier like in visual basic environment it is very difficult to manage the codes.
- Add new comment
- Read more
- 350 reads
Message box in vb.net
Submitted by planetsourcecode on Fri, 07/03/2009 - 00:08You have to do two things for creatng a messagebox in vb.net
1) In design mode add the following codes after




