473,287 Members | 1,708 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,287 software developers and data experts.

question about javascript

Hello everybody

In a webpage, I use JS display data from an xml file and a xsl file:

var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
data.load(dataUrl) ;
var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);

result is a div.

Somewhere in my xsl file I have a script that is repeated many times:

<xsl:for-each select="m:Messages">
....sometext...
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>

My problem is that the Javascript (alert) is not fired. I don't think the
problem is from my xsl file since the "sometext"actually appears in the
page.

I wonder, if Javascript rendered on the fly is executed. If it is, how can I
do a "execute scripts" or anything like this ?

Thanks !

Steve
Nov 18 '05 #1
6 1553
"Steve B." <n.*************@airsoftconsulting.com> wrote in message
news:uh*************@TK2MSFTNGP09.phx.gbl...
Hello everybody

In a webpage, I use JS display data from an xml file and a xsl file:

var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
data.load(dataUrl) ;
var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);

result is a div.

Somewhere in my xsl file I have a script that is repeated many times:

<xsl:for-each select="m:Messages">
...sometext...
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>

My problem is that the Javascript (alert) is not fired. I don't think the
problem is from my xsl file since the "sometext"actually appears in the
page.

I wonder, if Javascript rendered on the fly is executed. If it is, how can I do a "execute scripts" or anything like this ?

Thanks !

Steve

I think the problem is that when loading initially inline script is
recognised and run, not when added as innerHTML. Although this is an
untested hypothesis you may need to start the alert boxes yourself. Can you
post a small sample of your source and what you want to be alerted?

--

Joe (MVP - xml)
Nov 18 '05 #2
I'm tring to build a little chat in asp.net.
Since postbacks are awfull for such scenarios, I want to downloads messages
and transforms them in html form, instead of reloading the whole page.

The asp.net codebehind only generates a xml file from a dataset (that's why
my data xml file is a .aspx page).
Here is my current version (I removed useless lines for easyier read)
----------------------------------------------------------------------------
-
default.aspx:
__________

<HTML>
<HEAD>
<title>default</title>
<script language="javascript">
<!--
function DoTransform()
{
var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
var last = document.getElementById("last");
data.load(dataUrl) ;

var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);
}

// -->
</script>
</HEAD>
<body MS_POSITIONING="FlowLayout">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" runat="server"
EnableViewState="False"></asp:TextBox>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>

<div id="result">
</div>

<script language="javascript">
<!--
DoTransform();
// -->
</script>
</form>
</body>
</HTML>
----------------------------------------------------------------------------
-
data.aspx (result sent to the client using dataset.writexml):
----------------------------------------------------------------------------
-
<?xml version="1.0" standalone="yes"?>
<MessagesDataSet xmlns="http://www.tempuri.org/MessagesDataSet.xsd">
<Messages>
<MessageID>9</MessageID>
<Author>steve</Author>
<Body>Bonjour</Body>
<TimeStamp>2004-08-11T16:46:52.2150393+02:00</TimeStamp>
</Messages>
......................................
......................................
</MessagesDataSet>
----------------------------------------------------------------------------
-
and my xslt file
----------------------------------------------------------------------------
-
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://www.tempuri.org/MessagesDataSet.xsd">
<xsl:template match="/m:MessagesDataSet">
<table border="1">
<tr>
<td>auto</td>
<td>body</td>
</tr>
<xsl:apply-templates />
</table>
<xsl:for-each select="m:Messages">
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>
</xsl:template>
<xsl:template match="m:Messages">
<tr>
<td>
<b>
<xsl:call-template name="format-date">
<xsl:with-param name="date" select="m:TimeStamp" />
</xsl:call-template>
</b>
<xsl:value-of select="m:Author" />
</td>
<td>
<xsl:value-of select="m:Body" />
</td>
</tr>
</xsl:template>
<xsl:template name="format-date">
<xsl:param name="date">
<xsl:value-of select="." />
</xsl:param>
<xsl:variable name="YYYY" select='substring($date, 1, 4)' />
<xsl:variable name="YY" select='substring($date, 3, 2)' />
<xsl:variable name="MM" select='substring($date, 6, 2)' />
<xsl:variable name="hh" select='substring($date, 12, 2)' />
<xsl:variable name="mm" select='substring($date, 15, 2)' />
<xsl:variable name="ss" select='substring($date, 18, 2)' />
<xsl:value-of select="concat($hh, ':', $mm)" />
</xsl:template>
<xsl:template match="*" />
</xsl:stylesheet>
----------------------------------------------------------------------------
-
I do not want to keep the "alert" method, it was just for testing (it should
call another metod) if the JS is launched.
Thanks,
Steve

"Joe Fawcett" <jo********@hotmail.com> a écrit dans le message de news:
Oq**************@TK2MSFTNGP11.phx.gbl...
"Steve B." <n.*************@airsoftconsulting.com> wrote in message
news:uh*************@TK2MSFTNGP09.phx.gbl...
Hello everybody

In a webpage, I use JS display data from an xml file and a xsl file:

var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
data.load(dataUrl) ;
var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);

result is a div.

Somewhere in my xsl file I have a script that is repeated many times:

<xsl:for-each select="m:Messages">
...sometext...
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>

My problem is that the Javascript (alert) is not fired. I don't think the problem is from my xsl file since the "sometext"actually appears in the
page.

I wonder, if Javascript rendered on the fly is executed. If it is, how
can I
do a "execute scripts" or anything like this ?

Thanks !

Steve

I think the problem is that when loading initially inline script is
recognised and run, not when added as innerHTML. Although this is an
untested hypothesis you may need to start the alert boxes yourself. Can

you post a small sample of your source and what you want to be alerted?

--

Joe (MVP - xml)

Nov 18 '05 #3
"Steve B." <n.*************@airsoftconsulting.com> wrote in message
news:OU*************@TK2MSFTNGP12.phx.gbl...
I'm tring to build a little chat in asp.net.
Since postbacks are awfull for such scenarios, I want to downloads messages and transforms them in html form, instead of reloading the whole page.

The asp.net codebehind only generates a xml file from a dataset (that's why my data xml file is a .aspx page).
Here is my current version (I removed useless lines for easyier read)
-------------------------------------------------------------------------- -- -
default.aspx:
__________

<HTML>
<HEAD>
<title>default</title>
<script language="javascript">
<!--
function DoTransform()
{
var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
var last = document.getElementById("last");
data.load(dataUrl) ;

var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);
}

// -->
</script>
</HEAD>
<body MS_POSITIONING="FlowLayout">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" runat="server"
EnableViewState="False"></asp:TextBox>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>

<div id="result">
</div>

<script language="javascript">
<!--
DoTransform();
// -->
</script>
</form>
</body>
</HTML>
-------------------------------------------------------------------------- -- -
data.aspx (result sent to the client using dataset.writexml):
-------------------------------------------------------------------------- -- -
<?xml version="1.0" standalone="yes"?>
<MessagesDataSet xmlns="http://www.tempuri.org/MessagesDataSet.xsd">
<Messages>
<MessageID>9</MessageID>
<Author>steve</Author>
<Body>Bonjour</Body>
<TimeStamp>2004-08-11T16:46:52.2150393+02:00</TimeStamp>
</Messages>
.....................................
.....................................
</MessagesDataSet>
-------------------------------------------------------------------------- -- -
and my xslt file
-------------------------------------------------------------------------- -- -
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://www.tempuri.org/MessagesDataSet.xsd">
<xsl:template match="/m:MessagesDataSet">
<table border="1">
<tr>
<td>auto</td>
<td>body</td>
</tr>
<xsl:apply-templates />
</table>
<xsl:for-each select="m:Messages">
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>
</xsl:template>
<xsl:template match="m:Messages">
<tr>
<td>
<b>
<xsl:call-template name="format-date">
<xsl:with-param name="date" select="m:TimeStamp" />
</xsl:call-template>
</b>
<xsl:value-of select="m:Author" />
</td>
<td>
<xsl:value-of select="m:Body" />
</td>
</tr>
</xsl:template>
<xsl:template name="format-date">
<xsl:param name="date">
<xsl:value-of select="." />
</xsl:param>
<xsl:variable name="YYYY" select='substring($date, 1, 4)' />
<xsl:variable name="YY" select='substring($date, 3, 2)' />
<xsl:variable name="MM" select='substring($date, 6, 2)' />
<xsl:variable name="hh" select='substring($date, 12, 2)' />
<xsl:variable name="mm" select='substring($date, 15, 2)' />
<xsl:variable name="ss" select='substring($date, 18, 2)' />
<xsl:value-of select="concat($hh, ':', $mm)" />
</xsl:template>
<xsl:template match="*" />
</xsl:stylesheet>
-------------------------------------------------------------------------- -- -
I do not want to keep the "alert" method, it was just for testing (it should call another metod) if the JS is launched.
Thanks,
Steve


Well you could try Martin's suggestion of adding the defer attribute but I
don't think this is intended for this purpose, why not call the method
manually after doing the transform:

DoTransform()
DoOtherMethod()

--

Joe
Nov 18 '05 #4
I need to set some variable using the script that is generated...

That's why calling another method is not possible.

The other way could be to generate <input type="hidden" id="field_N"
value="myValue" > and to use documet.getElementById and a while...

Thanks,
Steve
"Joe Fawcett" <jo********@hotmail.com> a écrit dans le message de news:
e9**************@tk2msftngp13.phx.gbl...
"Steve B." <n.*************@airsoftconsulting.com> wrote in message
news:OU*************@TK2MSFTNGP12.phx.gbl...
I'm tring to build a little chat in asp.net.
Since postbacks are awfull for such scenarios, I want to downloads

messages
and transforms them in html form, instead of reloading the whole page.

The asp.net codebehind only generates a xml file from a dataset (that's

why
my data xml file is a .aspx page).
Here is my current version (I removed useless lines for easyier read)


--------------------------------------------------------------------------
--
-
default.aspx:
__________

<HTML>
<HEAD>
<title>default</title>
<script language="javascript">
<!--
function DoTransform()
{
var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
var last = document.getElementById("last");
data.load(dataUrl) ;

var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);
}

// -->
</script>
</HEAD>
<body MS_POSITIONING="FlowLayout">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" runat="server"
EnableViewState="False"></asp:TextBox>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>

<div id="result">
</div>

<script language="javascript">
<!--
DoTransform();
// -->
</script>
</form>
</body>
</HTML>


--------------------------------------------------------------------------
--
-
data.aspx (result sent to the client using dataset.writexml):


--------------------------------------------------------------------------
--
-
<?xml version="1.0" standalone="yes"?>
<MessagesDataSet xmlns="http://www.tempuri.org/MessagesDataSet.xsd">
<Messages>
<MessageID>9</MessageID>
<Author>steve</Author>
<Body>Bonjour</Body>
<TimeStamp>2004-08-11T16:46:52.2150393+02:00</TimeStamp>
</Messages>
.....................................
.....................................
</MessagesDataSet>


--------------------------------------------------------------------------
--
-
and my xslt file


--------------------------------------------------------------------------
--
-
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://www.tempuri.org/MessagesDataSet.xsd">
<xsl:template match="/m:MessagesDataSet">
<table border="1">
<tr>
<td>auto</td>
<td>body</td>
</tr>
<xsl:apply-templates />
</table>
<xsl:for-each select="m:Messages">
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>
</xsl:template>
<xsl:template match="m:Messages">
<tr>
<td>
<b>
<xsl:call-template name="format-date">
<xsl:with-param name="date" select="m:TimeStamp" />
</xsl:call-template>
</b>
<xsl:value-of select="m:Author" />
</td>
<td>
<xsl:value-of select="m:Body" />
</td>
</tr>
</xsl:template>
<xsl:template name="format-date">
<xsl:param name="date">
<xsl:value-of select="." />
</xsl:param>
<xsl:variable name="YYYY" select='substring($date, 1, 4)' />
<xsl:variable name="YY" select='substring($date, 3, 2)' />
<xsl:variable name="MM" select='substring($date, 6, 2)' />
<xsl:variable name="hh" select='substring($date, 12, 2)' />
<xsl:variable name="mm" select='substring($date, 15, 2)' />
<xsl:variable name="ss" select='substring($date, 18, 2)' />
<xsl:value-of select="concat($hh, ':', $mm)" />
</xsl:template>
<xsl:template match="*" />
</xsl:stylesheet>


--------------------------------------------------------------------------
--
-
I do not want to keep the "alert" method, it was just for testing (it

should
call another metod) if the JS is launched.
Thanks,
Steve


Well you could try Martin's suggestion of adding the defer attribute but I
don't think this is intended for this purpose, why not call the method
manually after doing the transform:

DoTransform()
DoOtherMethod()

--

Joe

Nov 18 '05 #5
Not sure if these will help but here's what I've done ...

1. You can fire an event by - oHint.fireEvent("onclick");

2. Or the problem could be in innerHTML

My kickoof page looks like this:

<%@ LANGUAGE = Jscript %>
<%

var pageid = Request.QueryString("id") + "";
var courseid = Request.QueryString("course") + "";
var learnerIP = Request.ServerVariables("REMOTE_ADDR") + "";
var themeID = Request.QueryString("theme") + "";

if (Request.QueryString("snd").Count ==0) {
var withSound = 1;
}else{
var withSound = Request.QueryString("snd") + "";
}

var coursename = courseid + ".xml"
var sourcefile = Server.MapPath(coursename);
var stylefile = Server.MapPath("GPxml.xsl");

var xmlDoc = new ActiveXObject("MSXML2.FreeThreadedDOMDocument.3.0" );
var xslSheet = new ActiveXObject("MSXML2.FreeThreadedDOMDocument.3.0" );
var xslTemplate = new ActiveXObject("MSXML2.XSLTemplate.3.0");
xmlDoc.async = false;
xmlDoc.load(sourcefile);

//Check for a successful load of the XML Document.

xslSheet.load(stylefile);
xslSheet.async = false;
xslTemplate.stylesheet = xslSheet;
var xslProcessor = xslTemplate.createProcessor();
xslProcessor.input = xmlDoc;

//Check for hi-contrast theme
var bgColor
if (themeID == 2) {
bgColor = "FFFFFF";
}else{
bgColor = "FFFFEE";
}

//see if we passed a theme to override the default course one
if (themeID > 0) {
themeID = "Theme" + themeID;
}else{
themeID = "Theme1"
}
xslProcessor.addParameter("id", pageid);
xslProcessor.addParameter("course", courseid);
xslProcessor.addParameter("ip", learnerIP);
xslProcessor.addParameter("themeID", themeID);
xslProcessor.addParameter("bgColorID", bgColor);
xslProcessor.addParameter("withSound", withSound);

xslProcessor.transform();
Response.Write(xslProcessor.output);

--------------------
and in the XSLT:

<xsl:variable name="Exception" select="concat('EXCEPTION(S): ', .)"/>

<div id="sndExceptions"
onactivate="document.oException.src='{$imgExceptio nFocus}'"
ondeactivate="document.oException.src='{$imgExcept ion}'"
onClick="javascript:alert('{$Exception}');" >

.... div content ...

</div>
---------------------

3. The DEFER is a good idea see this example if within the XSLT file ...

<!--*******************TEST DISPLAY********************-->
<!--Use of DEFER forces client side processing-->
<SCRIPT LANGUAGE="javascript" DEFER="true">
<xsl:comment>
<![CDATA[

function msgTest() {
alert("TEST");
}
]]>
</xsl:comment>
</SCRIPT>
Hope it helps.
ed
"Steve B." <n.*************@airsoftconsulting.com> wrote in message
news:uh*************@TK2MSFTNGP09.phx.gbl...
Hello everybody

In a webpage, I use JS display data from an xml file and a xsl file:

var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
data.load(dataUrl) ;
var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);

result is a div.

Somewhere in my xsl file I have a script that is repeated many times:

<xsl:for-each select="m:Messages">
...sometext...
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>

My problem is that the Javascript (alert) is not fired. I don't think the
problem is from my xsl file since the "sometext"actually appears in the
page.

I wonder, if Javascript rendered on the fly is executed. If it is, how can I do a "execute scripts" or anything like this ?

Thanks !

Steve

Nov 18 '05 #6
I am not sure how you can achieve what you want to achieve your way. But why
not write a few more lines of script to access the xml dom 'data' in
DoTransform()?
I'm tring to build a little chat in asp.net.
Since postbacks are awfull for such scenarios, I want to downloads messages and transforms them in html form, instead of reloading the whole page.

The asp.net codebehind only generates a xml file from a dataset (that's why my data xml file is a .aspx page).
Here is my current version (I removed useless lines for easyier read)
-------------------------------------------------------------------------- -- -
default.aspx:
__________

<HTML>
<HEAD>
<title>default</title>
<script language="javascript">
<!--
function DoTransform()
{
var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
var last = document.getElementById("last");
data.load(dataUrl) ;

var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);
}

// -->
</script>
</HEAD>
<body MS_POSITIONING="FlowLayout">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" runat="server"
EnableViewState="False"></asp:TextBox>
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>

<div id="result">
</div>

<script language="javascript">
<!--
DoTransform();
// -->
</script>
</form>
</body>
</HTML>
-------------------------------------------------------------------------- -- -
data.aspx (result sent to the client using dataset.writexml):
-------------------------------------------------------------------------- -- -
<?xml version="1.0" standalone="yes"?>
<MessagesDataSet xmlns="http://www.tempuri.org/MessagesDataSet.xsd">
<Messages>
<MessageID>9</MessageID>
<Author>steve</Author>
<Body>Bonjour</Body>
<TimeStamp>2004-08-11T16:46:52.2150393+02:00</TimeStamp>
</Messages>
.....................................
.....................................
</MessagesDataSet>
-------------------------------------------------------------------------- -- -
and my xslt file
-------------------------------------------------------------------------- -- -
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:m="http://www.tempuri.org/MessagesDataSet.xsd">
<xsl:template match="/m:MessagesDataSet">
<table border="1">
<tr>
<td>auto</td>
<td>body</td>
</tr>
<xsl:apply-templates />
</table>
<xsl:for-each select="m:Messages">
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>
</xsl:template>
<xsl:template match="m:Messages">
<tr>
<td>
<b>
<xsl:call-template name="format-date">
<xsl:with-param name="date" select="m:TimeStamp" />
</xsl:call-template>
</b>
<xsl:value-of select="m:Author" />
</td>
<td>
<xsl:value-of select="m:Body" />
</td>
</tr>
</xsl:template>
<xsl:template name="format-date">
<xsl:param name="date">
<xsl:value-of select="." />
</xsl:param>
<xsl:variable name="YYYY" select='substring($date, 1, 4)' />
<xsl:variable name="YY" select='substring($date, 3, 2)' />
<xsl:variable name="MM" select='substring($date, 6, 2)' />
<xsl:variable name="hh" select='substring($date, 12, 2)' />
<xsl:variable name="mm" select='substring($date, 15, 2)' />
<xsl:variable name="ss" select='substring($date, 18, 2)' />
<xsl:value-of select="concat($hh, ':', $mm)" />
</xsl:template>
<xsl:template match="*" />
</xsl:stylesheet>
-------------------------------------------------------------------------- -- -
I do not want to keep the "alert" method, it was just for testing (it should call another metod) if the JS is launched.
Thanks,
Steve

"Joe Fawcett" <jo********@hotmail.com> a écrit dans le message de news:
Oq**************@TK2MSFTNGP11.phx.gbl...
"Steve B." <n.*************@airsoftconsulting.com> wrote in message
news:uh*************@TK2MSFTNGP09.phx.gbl...
Hello everybody

In a webpage, I use JS display data from an xml file and a xsl file:

var data = new ActiveXObject("Microsoft.XMLDOM");
data.async = false;
var dataUrl = "data.aspx";
data.load(dataUrl) ;
var transform = new ActiveXObject("Microsoft.XMLDOM");
transform.async = false ;
transform.load("discussion.xslt");

result.innerHTML = data.transformNode(transform);

result is a div.

Somewhere in my xsl file I have a script that is repeated many times:

<xsl:for-each select="m:Messages">
...sometext...
<script language="javascript">
alert('<xsl:value-of select="m:MessageID" />');
</script>
</xsl:for-each>

My problem is that the Javascript (alert) is not fired. I don't think the problem is from my xsl file since the "sometext"actually appears in the page.

I wonder, if Javascript rendered on the fly is executed. If it is, how

can
I
do a "execute scripts" or anything like this ?

Thanks !

Steve

I think the problem is that when loading initially inline script is
recognised and run, not when added as innerHTML. Although this is an
untested hypothesis you may need to start the alert boxes yourself. Can

you
post a small sample of your source and what you want to be alerted?

--

Joe (MVP - xml)


Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Randell D. | last post by:
Folks, I'm still learning javascript - I've invested in a couple of books and reading online as much as possible. I'm pretty sure what I am suggesting is possible though I'm trying to weigh up...
5
by: Henry | last post by:
HTML is an acronym for Hyper Text Markup Language. But why is it hyper? Too much java . . . http://takeoff.to/henry
2
by: Mark Preston | last post by:
Its perhaps a bit early to ask, since I'm still doing the page design and haven't got down to the coding yet, but I wonder if anyone can help with a bit of a question. To lay the groundwork, a...
2
by: Hazzard | last post by:
I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the client side, I lose the new value of the textbox when...
3
by: Diana M | last post by:
Hello, I have started my first asp.net application (beginner). I have 2 text boxes on the form that should contain 2 different dates (beginning and end). It would be nice to have 2 small buttons...
1
by: google1 | last post by:
Has anyone written this one? Seen such a thing? Please send me a link: Skill Testing Question Exploder --------------------------------------------- Basically the plan is to create the...
5
by: Joh | last post by:
I'm using mailto to open up an email that have a hyperlink in the body. The hyperlink passes two variables Name and Emailadress. The problem is that only the first variable Name show up in the...
1
Frinavale
by: Frinavale | last post by:
Hi there! I'm not sure if this question should be posted under the .NET form or the JavaScript form...I just have a general question about JavaScript and .NET. I usually test my JavaScript in...
6
by: John | last post by:
Hello, I was thinking of trying out JavaScript and learn it on my own. I had a few questions though. Is it still popular with businesses today? Is JavaScript bad for search engine opt....
3
by: Zhang Weiwu | last post by:
Hello! I wrote this: ..required-question p:after { content: "*"; } Corresponding HTML: <div class="required-question"><p>Question Text</p><input /></div> <div...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.