Hi,
Is it possible to use the row-numbers from an Excel-sheet?
I'd like to have a unique id (like auto_increment in SQL), so why not use the row-numbers? I need those numbers for an export...
Is that possible? (Otherwise I need to add another column with the numbers 1 to ...., but when you...
Hi,
I have some formfields with an onChange="checkNeg()"
The form itself has an onSubmit="return(Verify())"
This function looks like this:
function Verify(){
if (!checkNeg() || !checkValues())
{
return(false);
}
return (true);
}
But what happens when I hit 'ENTER' in a...
Hi,
I'm curious to know what this if-statement means (javascript):
if ("".replace)
{
}
I can't think of anything....
Bet it's something simple, but I can't figure it out!
T.I.A.
Quasibobo
Don't eat yellow snow!
Hi there,
I've got this code:
<script language="JavaScript">
<!--
function CheckBanknr(val) {
if ("".replace)
{
waarde = val.value;
var rekNr = String(waarde).toUpperCase().replace(/[\s\t-\.]/g,""); // Delete white space, hyphens en periods
if (rekNr.match(/[^P^0-9]/g))
{
// If...
Hi,
I've got these form fields that i need to check wiether the value of this field is less than zero. If so, give an alert message and select this field.
<form name="invoeren">
<input type ="bestellen_1_1" onChange="Optellen(1,4)">
<input type ="bestellen_1_2" onChange="Optellen(1,4)">...
Hi,
I've got two (physical) HD's in my PC, a 120Gb HD (less than 1 year old) and a 40Gb HD (about 3 years old). Since three weeks I can't save anything anything to the 40Gb-HD! At least.... I can save files, untill I reboot (or shutdown en startup) the PC. Then, anything that I had saved on...
Morning,
The thing I want to do must be quite simple, i guess, but I do not know how. With ASP and Access I generate multiple html files to build a site. Now I want to be able to save one output file as an html page.
In stead of always accessing menu.asp which builds the menu I want to...
Hello,
It is getting anoying but I can't seem to delete a file of the server. This is de code I use:
Path = ServerPath & "\upload\"& Map & "\" & File
Set FSO = CreateObject("Scripting.FileSystemObject")
IF FSO.FileExists(Path) THEN
FSO.DeleteFile(""& Path & "")
Response.Write(""& Path &...
Hi,
I need to POST form-input to a page in a frameset on the next page. Something like this:
<form action="next_page.php" method="post">
and next_page.php looks something like:
<html>
<frameset rows="100%","0">
<frame name="topFrame" src="patience.php">
<frame name="bottomFrame"...
Hi
I need to validate a page with a lot of radiobuttons (dynamicly created bij PHP):
<form name="svl">
<input type="radio" name="question_1" value="3">
<input type="radio" name="question_1" value="2">
<input type="radio" name="question_1" value="1">
<input type="radio" name="question_2"...
The question only seems simple...
I am trying to create an online game, using php/mysql and javascript. Most of the functions I am going to need won't be a problem. One, crucial however, I'm not sure about.
A game will allow to play four users (clients) to play against each other. The actions...
Hello,
The problem I'm having is that I am (still) unsuccesfull in fixing a layer after I made it visible with an onMouseover. I know this problably doesn't make any sense so please take a look at http://home.planet.nl/~munst264/stuff/.
Go over the black or white square and try to click on of...
I don't get this:
I've got a form (name="toets_2") and this button:
<input type="button" name="end" value="END" onClick=\"document.toets_2.submit();>
But whenever I want to submit with this button I get this error: Object doesn't support this property or method
Why? This (or...
Help please,
I am having difficulties with a function of mine working properly. It is a popup which uses the values of some textarea's to build a Preview of the page. But since in the textarea's people can use quotes it sometimes messes up the code for the popup.
Does anybody know a function...
Hi,
What do I need to change in this script, so the RM-click is disabled without displaying the alert-message? So just disabling the RM-button...
if(event.button==2)
{
alert('I don\'t thinks so!');
return false;
}
T.I.A
Don't eat yellow snow!
Hello,
Although the problem title may give you a "duh!!" reaction it isn't thát simple (for me)... I need a function in which I can handle different form names. I already know the function does the job it is supposed to do, but only when it a static form name. The function is as follows...
Hi there,
My question isn't that difficult i guess, the answer however remains to be seen.... On a website I'm building I use a rather large body text. In the new lay-out of the site there are two columns in which the text can be display.
I would like to be able to split the bodytext string...
Hi there,
I've got a pretty easy problem, I guess. I use a wysiwyg-editor which enables my customer to insert hyperlink in to text. The editor however creates absolute path's which I want to alter to relative path's. No sweat so far. I wrote a function:
Function absolute_to_relative(str)
str...
Ok.... it's me again (huge PHP-fan and ASP-newbie)
With ASPsmartUpload I can upload multiple files. Now I'd like to seperate these files one by one. In php it would be something like this:
$i=1
FOREACH (file AS myupload.Files)
{
myFile.$i=file.FileName
$i++
}
so the files get (for...
Once again two newbie-questions:
Is there an equivalent to PHP's $_FILES['name']etc.?
and do you really need to install something like ASPsmartUpload?
Second question: What's the equivalent to PHP's
if(!isset($_GET['var'])) || empty($_GET['var']))
my
IF NOT...
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.