|
I'm not a javascript guru, but try these 2 things:
try call a function that is in the script you loaded
remove the rturn statment.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
|
Hi - I am new to this forum and (perhaps because I didn't look hard enough?) I couldn't find a forum devoted simply to AJAX. Is there such a thing and, if not, would it be possible to have one?
I know that AJAX involves related technologies that are probably spread around the various forums on their own, but I feel it would be helpful to bring them all together under the heading of AJAX?
Neville
|
|
|
|
|
AJAX falls under 'web development', at least, that's how it seems to work at the moment.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
Its combined with the PHP forum.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Thanks Brad
Neville
|
|
|
|
|
|
no..... i wish there was
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
'Web Development' addresses the needs of both AJAX, DHTML and Javascript, PHP (Add on your sky to the list ...)
|
|
|
|
|
how can i dynamically call a windows user control in a windows Form.
|
|
|
|
|
I think this may be the wrong forum.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Dear Sir/Madam,
I am developing webpage where I need to get the DataTable records from the webpage and I dont know the length of this table and need to put this datatable at once into the database i.e I want to insert the bulk records into the Database, So please tell me any solution for this
Thanks
Shivaleela
Waiting for reply
Shivaleela
|
|
|
|
|
Hey,
First of all u have to understand the limitation of data size..
If you want to insert bulk data... be sure.. u r postion ur data...
the postion method should be.. POST..
last but not the least.... ur data should not be more then 8 MB.. this the point where i am exajurating it...
Microsoft says u can post upto... 8mb.. but it is wise to tuch the limit....
USe BCP
Ravi Kant Srivastva
(Design Enginer)
|
|
|
|
|
Thanks Ravi,
The data will not be more than 8MB it will record of some nearly 10,000 records. Could you please tell me in detial solution fo this
Regards
Shivaleela
|
|
|
|
|
What do you mean by Bulk records. The above reply states that you intend to insert bulk information into individual rows, is this the case or are you trying to insert many different rows into one database. Also my opinion of bulk may differ from yours, can you provide any numbers?
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
I am trying to insert many different rows into one table in database. Like there may be some 10000 different rows are there in table(from web page) and these I want to insert into database table
Regards
Shivaleela
|
|
|
|
|
Could you provide more of a description (eg. Links and such)
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
has any one worked on binary codes for communications?
|
|
|
|
|
Al the time, in fact I am using them now.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
We don't have enough things like this in here so I am going to set a challenge:
Use JavaScript to make an Ajax cal to a web server, then retrieve an XML document and insert the content directly into the page.
++**Conditionss**++
You cannot use ANY libraries etc.
Script must work in FireFox, IE, Netscape, Opera and maybe safari if you can.
Once completed, the page must stil be valid Xhtml.
You need to be able to specify the point where the content is added.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Here's a nifty little script I built, almost by accident. Essentially, it takes a string of invisible characters and makes grow to full size in a cascading fashion. Feel free to use it in whatever you want:
***************
<script type="text/javascript" language="JavaScript">
//<!--
var timeout;
function SizeShift(LetterNum)
{
Grow(LetterNum + 1, 0)
if (LetterNum <= 18)
{
timeout = setTimeout('SizeShift('+(LetterNum + 1)+');', 100);
}
}
function Grow(LetterNum, Size)
{
var D = document.getElementById(LetterNum);
D.style.fontSize = Size;
if (Size < 25)
{
timeout = setTimeout('Grow('+LetterNum+', '+(Size + 1)+');', 10);
}
}
timeout = setTimeout('SizeShift(0);',100);
//-->
</script>
<span style="font-size ; color:#aa0000;"><b><i>
<span id="1">C</span><span id="2">o</span><span id="3">d</span><span id="4">e</span><span style="font-size: 25"> </span><span id="5">P</span><span id="6">r</span><span id="7">o</span><span id="8">j</span><span id="9">e</span><span id="10">c</span><span id="11">t</span><span style="font-size: 25"> </span><span id="12">i</span><span id="13">s</span><span style="font-size: 25"> </span><span id="14">C</span><span id="15">o</span><span id="16">o</span><span id="17">l</span><span id="18">!</span>
</i></b></span>
*****************
So, here's the challenge: I want to use this script as a signature for message board-style posts on a site that doesn't accept certain tags, including at least <SCRIPT>, <LINK>, <IMG>, and <IFRAME>, evidently in an attempt to prevent malicious use. Of course, what's a wall good for if you can't find a way around it?
Any ideas on how to make this happen? One approach I've been trying without success is to host the script and signature somewhere then import that page into the innerHTML of, say, a <SPAN> within the post. I can't quite make that one happen. Any other ideas? Proof of concept is requested, if possible.
-- modified at 20:47 Friday 26th January, 2007
|
|
|
|
|
What forum are you trying to hack use?
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
It's actually an online correspondence gaming forum for a board game called Diplomacy. You can't get into the forum unless you join the game, so the address wouldn't help you much, but I bet most forums are similarly protected against potentially malicious posts.
|
|
|
|
|
tantiboh wrote: but I bet most forums are similarly protected against potentially malicious posts.
No, every forum would have a slightly different stratagy. Maybe if you provided a link then we could see what forum they use.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
how can i make a rollover menu that shows submenus when rolled over - like the green top right menu here on codeproject.com - when rolling over the "Message Board" menu for example it opens the submenus (windows vista,visual C++,Alt/WTL/STL,COM,C++ etc.).is it possile with Dreamweaver? or generally what code should i write.
tx.
|
|
|
|