Archive for the 'Programming' Category
DIV vs. TABLES
Tables were not created for web layout or positioning. Tables were created to provide structure to data. They were created to contain tabular data. Though the early html standard uses table for layout purposes, yet it is not the best tool for it. The main disadvantage of using tables to layout a page is [...]
Filed under: Programming | 1 Comment
Tags: DIV, DIV vs Tables, tables
Finally I have my own domain name. Please click HERE to read this same post on my new site. Thanks!
When passing information via URL variables, we have to be careful that those variables do not contain non-URL-friendly characters. This includes spaces and non-alpha-numeric characters…
to be able to pass this characters, you have to first convert [...]
Filed under: Programming | Leave a Comment
Tags: passing url, url friendly, url variables
While working with a certain web application, I just found my self trapped on a string concatination problem. What I’m tryin’ to do is concatenate 2 strings and assigning the output to the first string. My code goes something like this:
PSEUDO CODE
var myString=””;
for(i=1;myQuery.recordCount;i++){
myString = myString & myQuery.record[i];
}
note:
Let say myQuery is a SQL query which returns
all [...]
Filed under: Programming | Leave a Comment
Tags: memory buffer, String Concatenation
Coldfusion
I work at a company where coldfusion is the main tool in web applications development. Though I am using ASP before I was hired, I still have to be focus on coldfusion so I have no choice but to learn it starting from the basics. First I decided to study the idea of how does [...]
Filed under: Programming | Leave a Comment
Tags: coldfusion
onStart()
Finally, I got my own technical blog. Well I’m a novice in programming, I just recently got my first job as a software developer. I really want to be focus on .Net programming but unfortunately the company that hired me are using the old VB6 and coldfusion. But it’s ok, For now I’ll just let [...]
Filed under: Programming | Leave a Comment