I want to use a javascript variable (value handed over via the url) in the asp:textbox paramater text in order to have the field filled in:
<div id="username" class="form-group">
<label for="txtUsername">Email</label>
<script type="text/javascript">
var username = querySt("username");
//document.write(username);
</script>
<asp:TextBox ID="txtUsername" runat="server" CssClass="form-control" text="<%= username %>"></asp:TextBox>
The value is not shown. How to I get the value of the variable used in the text parameter?