Currently i have a DEFAULT.htm file that display 2 htm frames , FRAME1.htm and FRAME2.htm.
1.FRAME 1.htm present a form to fill up a sql query and pass info to a "MYQUERY.cf m"
2.MYQUERY.cfm performs query on sql and show results in table on FRAME1.
Is any way i can make that result table to show up on FRAME2.htm instead??
I tried everything and nothing works
Any help will...
User Profile
Collapse
-
cfoutput to a htm file? html frames
-
No unfortunately my code does not compile . -
deadlocked code
For some reason i am unable to compile or execute the following code ...look like a i have a deadlock or something like that ...
Could anyone send me into the right direction ? Thanks !!
This is the code:
...Code:int itemCount procedure producer() { while (true) { item = produceItem() if (itemCount == BUFFER_SIZE) { sleep() -
Invalid character in content model .
I keep getting the following error when trying to read my xml:
Invalid character in content model. Error processing resource
Complaining about the following line in my dtd file:
<!ELEMENT parts (cpu, ram, hard drive, optical drive, price)>
Anyone can tell me what is wrong with this line ???
Any help will be greatly appreciated. -
Function not working
I am trying to create a script that will have a drop down menu and will load the web page selected .
For some reason my function doesnot load the web page selected on the drop down menu What i am doing wrong here?
Any help will be appreciated
This is the function :
function loadPage(){
var sel_idx = document.demo.m enu.selectedInd ex
var urlToLoad = document.demo.m enu.options[sel_idx].value... -
Problems with validation inputs!!
I have to create a site that have fields to put the following info and input must be validated and error displayed otherwise.
* First Name (limit 25 characters)
* Last Name (limit 25 characters)
* Street Address (limit 45 characters)
* City (limit 25 characters)
* State (2 character code )
* Zip Code (5 digits only, must be numeric)
* Date of...Leave a comment:
-
-
Form field validation errors
Ok ,i have to create a page to allow entry of user information;all fields must be validated and error displayed otherwise
* First Name (limit 25 characters)
* Last Name (limit 25 characters)
* Street Address (limit 45 characters)
* City (limit 25 characters)
* State (2 character code )
* Zip Code (5 digits only, must be numeric)
* Date of Birth (mm/dd/yyyy format,... -
stamp date on md5sum
I know this is a stupid question but ....im stuck ...
I have 2 files were i have to perform a md5sum check , the results (hash string) output to a file were must be stamped with the date and time the validation was performed .
I got the first part :
md5sum file a file b > results.txt
But how do you stamp those files with the time and date ??
Any help will be appreciated -
etc/passwd edition
Ok , i need to make some changes on user password policies by editing the etc/passwd file ...
I need to change joeblow /etc/shadow entry so that he must change his password once every 90 days, receiving a warning 5 days prior to his password expiring, with no minimum time before user can change his passwords .
So far i can accomplish the first part (90 days to change password) thru this command:
chage... -
egrep issues
Ok , i m playing with egrep command and i am a little stuck in these (i have researched google and MAN pages already ):
1.i need to search files using EGREP in the /var/log directory that contain the word 'su' (case sensitive) at EITHER the END of a line OR the beginning of the line. Add two lines of context AFTER each keyword found. (i can accomplish everything BUT the END of the line with the following command:).
... -
No , i s not grep because we are looking for file names no strings within a file .
I know FIND must be used but i dont remember the correct parameters ..Leave a comment:
-
Find files in Linux
I m kind of stuck ...i need to find files with a specific criteria but i can not make it work ....
These are the ones :
1.How do you Find files under /root that contain the whole words (i.e., not part of another word) 'foo', 'bar', 'baz', 'cat', 'cut', 'cot.' using a single command ?
I tried :find /root -name 'foo.*' -name 'baz.*'-name 'cat.*'-name 'cut.*'-name 'cot.*'
but seems that is not right... -
Validate floats
I have to validate s floats thru a function , but the validation have to be don with a string of 20 characters ....
Any idea how to do thatvalidation floats?
Any help will be very appreciated !!!
This is the code so far :
#include <iostream>
#include <cstdlib>
using namespace std;
struct project
{
float latitude;
float... -
issues with maximum and average value in functions
Well ...this is a real challenge .....i got everything else working OK...but ...
I have to get the average and maximum value out of a group of people thru two functions .I have problems passing value to function and processing it after is there ...
Any help will be very appreciated.
This is my code :
#include <iostream>
#include <cstdlib>
using namespace std;... -
-
String Error validation thru a function
I dont know what i am doing wrong , i am trying to validate a string entry (first name to only take lower and upper case letters) thru a function , but for some reason is not working ....=0(
Any idea why ?
This is the code
#include<iostre am>
using namespace std;
bool getstring (char[30]);
struct nameuser
{
char first[30];
char last [30];... -
-
Passing array to functions thru pointers
Ok , i am a baby in the world of C ++ ...
I have to write a code where takes string from user ,check for error (thru a function ) and return it to the main function ,everything using pointers . I am really stuck on it (it does not take my pointers to function )
What i am doing wrong ?? This is it:
#include <iostream>
#include <cstdlib>
using namespace std;
bool...
No activity results to display
Show More
Leave a comment: