Using CDOSYS to Send Email especially for Godaddy

Submitted by planetsourcecode on
Here 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
When 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:
  1. int x = Integer.parse(request.getParameter("x").toString());

Speed-Up Software Development : Framework-Driven Development

Submitted by arjay_nacion on
Many software developers today are still using the old way of "write your own code" strategy. Although it may seem right for a developer's perspective in terms of skill enhancement and originality, when it comes to developing large-scale applications on a tight deadline, this may not seem to be the best approach.

Introduction to Microsoft .Net Framework

Submitted by planetsourcecode on
.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.