Hi,
Recently, I was working on XML Parsing using ASP.Net. In this I have to AED (Add/edit/delete) Nodes as user enter data, I am comfortable with adding nodes as I have to create Element and just do…
objXml.AppendChild(newchildnode)
it works find, but when I have to delete which is more conditional and for me is not as simple [...]
Posted on February 28th, 2006 by Sumit Gupta
Filed under: Uncategorized | No Comments »
Hi,
Lately, I have to work to make a T-Shirt designer Studio in two site, the difference is that two site were made in PHP and ASP.Net respectively. But the common this that comes as most difficult part in this is obviously designer studio itself.
So, what exactly my problems are with studio, well both the language [...]
Posted on February 26th, 2006 by Sumit Gupta
Filed under: Uncategorized | No Comments »
Hi,
Today I will be discussing common mistake I have seen new programmer does. You have observed often that there is a small Checkbox lying just below your Password field in most of the site. You often Check that box so that next time you visit that site you don’t need to get yourself logged in [...]
Posted on February 24th, 2006 by Sumit Gupta
Filed under: Uncategorized | No Comments »
I have been in Software industry for 2 years now, and this is what I feel. If you are “Talented” no one needs you. If you know how to solve problems and can do stuff that really doesn’t matter, atleast this is what I feel. As employeer only need his company grow, no matter what [...]
Posted on February 22nd, 2006 by Sumit Gupta
Filed under: Uncategorized | No Comments »
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 format
b=rgdate.test(tmpdate);
if (!b)
{
alert(“Please [...]
Posted on February 16th, 2006 by Sumit Gupta
Filed under: Uncategorized | No Comments »
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
[...]
Posted on February 12th, 2006 by Sumit Gupta
Filed under: Uncategorized | No Comments »
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 birday 2 u
very very very [...]
Posted on February 7th, 2006 by Sumit Gupta
Filed under: Uncategorized | No Comments »