H
Henke
To an WebForm I add a HTML button and a HTML TextBox, txt1.
On the onclick event of the button I call a function called test, The
function looks like this:
<script>
function test()
{
txt1.value = "test";
}
</scipt>
When i run the application I get an error message:
"txt1 is null or not an object"
Why does this happens?
Thanks!
On the onclick event of the button I call a function called test, The
function looks like this:
<script>
function test()
{
txt1.value = "test";
}
</scipt>
When i run the application I get an error message:
"txt1 is null or not an object"
Why does this happens?
Thanks!