Can I put a variable to this tag?
For instance, I have
<script runat=server>
String notVar = "12345";
</script>
<myTagPrefix:myTagName id="myId" myVar=notVar runat=server>
The above notVar is a variable, by my defintion. But the output shows as if it is a text. It shows as notVar instead of 12345.
For instance, I have
<script runat=server>
String notVar = "12345";
</script>
<myTagPrefix:myTagName id="myId" myVar=notVar runat=server>
The above notVar is a variable, by my defintion. But the output shows as if it is a text. It shows as notVar instead of 12345.