D
Dave Vanwonterghem
Hi,
My ASP .NET pages contain some client-side javascript variables and
functions :
<html>
<head>
<script language="Javascript">
pageId = '[pageId]';
function init() {
... do some work using the value of pageId ...
}
</script>
</head>
<body>
<form ...>
...
</form>
</body>
</html>
The variable [pageId] (e.g. 10, 20, 30, ...) should be filled in by my ASP
..NET script (server side) before the result is sent to the browser.
How can this be accomplished ?
Jill
My ASP .NET pages contain some client-side javascript variables and
functions :
<html>
<head>
<script language="Javascript">
pageId = '[pageId]';
function init() {
... do some work using the value of pageId ...
}
</script>
</head>
<body>
<form ...>
...
</form>
</body>
</html>
The variable [pageId] (e.g. 10, 20, 30, ...) should be filled in by my ASP
..NET script (server side) before the result is sent to the browser.
How can this be accomplished ?
Jill