hello, I am using jquery validation plugin (http://docs.jquery.com/Plugins/Validation/Methods/equalTo#other) to validate a form. I have 3 fields to validate....
Validation and Javascript. No Way!! Totally insecure!! Why you are using it?? -- A K M Mokaddim http://talk.cmyweb.net http://twitter.com/shiplu Stop Top...
Thanks Siplu for your advice, its helpful :) elvista, actually the problem is not that if keep changing the software is a good or bad practice, many time we...
2009/5/1 shiplu <shiplu.net@...> ... I guess for the sake of UI and UserFriendlyness JavaScript validation should be there at some context. Of course...
this insecure thing is worthy sometime. i will do validation in server side. but client side validation also necessary for me. thanks ... -- Best Regard, Raju ...
... a good or bad practice, many time we can't say what we are going to do, and off course software always keeps evolving, though in my case the speed of ...
Was reading this fine article you might as well like it :) http://www.jaisenmathai.com/blog/2008/04/17/why-everyone-should-write-a-framework-and-never-use-it/...
... why the error shows. ... * http://www.mysql-apache-php.com/fileupload-security.htm *See the above link to implement the permission and proper security for...
Hi, Raju follow this, if($("#Discount").val() + $("#NetPaid").val() == $("#TotalBill").val()) { alert("Equal"); } else alert("Not euqal"); you must be use id...
Hi shaon, Thanks for your tips. I did ur said way. actually this way was last resort. I was looking for if there was any built in way of doing using jquery....
So simply you need to set write permission to your upload directory. In default it doesn't set write permission to any directory. And there is no reason to...
On Sat, May 2, 2009 at 10:50 AM, Md. Zakir Hossain D <zakirdaq@...> ... default it doesn't set write permission to any directory. And there is no reason...
Hi expert, I have a text box. that allow only number(0-9) , comma(,), period(.), others character cant type in text box. help me .......................... ...
On Mon, May 4, 2009 at 6:34 PM, Abu Saleh Muhammad Shaon < ... type in text box. ... Let me guess twice: 1. you have a textbox where you want to write but you...
Hi experts,  Any one knows where to downlaod the magenta oscommerce  can u suggest me. Own a website.Get an unlimited package.Pay next to nothing.*Go to...
I guess thar u want a textbox where u can write only digit and comma..etcwell you can do it using keypress event, in the event handler you need to check the...
... We Bangladeshis are very smart we do like this: http://lmgtfy.com/?q=download+magento http://lmgtfy.com/?q=download+oscommerce Bangladeshi Brainies :)...
Thanks Lenin vaiya............. but you don't send me regular expression for that solution. Best wishes ======= Shaon ==================== = Web developer,...
... Asked me not to send? Okay wont send... Oh well... did you forbid? human being does those most which are forbidden ^\d*[0-9](\.)*(\,)*$ would be the regex...
A framework can have two purposes 1. Helping the developer build scalaebale, manageable code while working on complex applications (20% cases) 2. Make it...
Hi, lenin viay your are great. I want to know from you is following expressions are correct ? ^\d*(\. )*(\,)*$ or ^\[0-9]*(\. )*(\,)*$ Best wishes ======= ...
^\d*(\. )*(\,)*$ and ^\[0-9]*(\. )*(\,)*$ are same. And ^\d*[0-9](\. )*(\,)*$ is equivalent to ^\d+(\. )*\,*$ If space after \. is mistakenly given then the...