Category: Uncategorized

  • How to Check for Date Format using Javascript

    One Small Example of how to validate a Input box content against a given mask using Javascript. For this example I have picked up “date” as our input for validation… Code Goes something like this… var tmpdate= document.getElementById(“passport_expire_date”).value; //Pick the Field Value to Validation var rgdate= new RegExp(“[0-9]{2}/[0-9]{2}/[0-9]{4}”); //we need to validation date in mm-dd-yyyy…

  • ASP.Net : Who am I?

    I often require to know the script name currently executing to display certain features depending on page. For this I use this code for detecting the script name of the page that is executing …. Dim str As String str = Request.ServerVariables(“SCRIPT_NAME”) Dim allname() As String allname = str.Split(“/”) If allname(allname.GetUpperBound(0)) = “register.aspx” Then LoginBox1.Visible…

  • Today my friend celebrate my brithday..

    Today my friend Rohit wishes my happy birthday, best I can imagine from my friends… he is currently in US and mail me this… happy birday 2 u golu molu dost achhey dost ek dusre ka birday ni bhulte golu molu dekh main ni bhula dost happy birday 2 u golu molu dost happy happy…

  • Chart Control for ASP.Net

    For my current project I need to create charts and graphs, I know how to use Graphics class in ASP.Net and know few techniques to Create graphs as well. But, still as usual I look for free codes available for the same. I search and very quickly find my problems solution… http://carlosag.net/Tools/WebChart/Default.aspx A Free control…

  • Shopping Carts: X-Cart and its template engine

    Hi, As I start working on my X-Cart modification project, I learn few things. One of the most important thing among other is How a bad planning change the Good design patterns. X-Cart uses Smarty for Template handling. Smarty as you might know is a Template engine by PHP itself (http://smarty.php.net). It is based on…

  • FTP Publishing of my blog

    I recently register with one of free hosting account, I am not sure what to do with that. Than I thought why not try FTP option of my Bloggers Account and try publishing my Blog there… I did that Every thing works fine. Great!!! But, Now I thought to host my blog again on blogspot.com…

  • Linux Permissions

    Hi, I have been doing web development for linux and windows from 2 years now, and i have come across only developers that really knows the difference between the two operating system, Most of them says whats the difference between two Operating system, after all they get apache running on both. The first difference is…