I am getting description text dynamically and display it on the report. The table width is "800" but when my description contains multiple forward slashes ("/"), the table is displaying wider and collapsing the table. How do I escape the "/".
Here is the code.
=================================...
Here is my question.
I have 3 form fields(Proj name, description and userid). Proj name and Proj description are new inputs from user. But for the thrid field "userid", I need to verify the existence against coldfusion DB.
As now all 3 validations are working except the userid ajax...
Here is my question.
I have 3 form fields(Proj name, description and userid). Proj name and Proj description are new inputs from user. But for the thrid field "userid", I need to verify the existence against DB.
As now all 3 validations are working except the userid ajax validation when...
How to I write query to get duplicate column count.
For eg,
One user has 5 accounts on a website with 5 different user logins(primary key), same email address and same password on 5 account.
How do I find that how many users has more than one accounts with same email and same password...
This regular satisfies all the above conditions.
/^(?=.*[A-Za-z])(?=.*[0-9])(?!.*[^A-Za-z0-9])(?!.*\s).{5,12}$/;
eg:
var re = /^(?=.*[A-Za-z])(?=.*[0-9])(?!.*[^A-Za-z0-9])(?!.*\s).{5,12}$/;
if ( !re.test(passwd) )
{
alert('Your password must satisfy the following...
I need to do the password validation in javascript with the below policies. Will you please let me know how the regular expression look like?
- Password should be 6 to 13 character long.
- Password should have at least one alphabet (a-z, A-Z)
- Password should have at least one numeric...
Thank you for your reply. Right now I am using JS and CF to display the popup. But my leader dont like to see the title bar on popup. So I thought we may have an option to use CSS layout to display the CF content.
Is this possible to use the combination of JS, CSS and CF?
Is there a way we can create popup in ColdFusion. My lead dont like the javascript popup and he is looking for a square box kind of popup in which i need to show the dynamic content.
Is there any logic available to find the difference between two arrays.
OldArray = "F5,PLB,REC,TOL,ZMM,ZRW"
NewArray = "F5,REC,TOL,ZMM,ZRW,ZZZ"
I need to get whats removed and whats added.
(eg. Here PLB removed and ZZZ added)
Thanks in advance.
Regards
micJ
On my SQL Server, i have 2 databases, DBS1 and DBS2. On DBS1, i have 5000 records on table TBL1. On DBS2, i have a table TBL2 as same columns of TBL1 plus 5 extra columns.
My need is, i need to copy all the records from DBS1.TBL1 to DBS2.TBL2 thru SQL Server query analzer or some other way...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.