hi how to assign java script value to label;
<script type="text/javascript">
var url=window.location.href;
alert(url)
</script>
above cod i get
url="http://localhost:49162/Autocomplete/Default.aspx" <asp:Label ID="lbl_key" runat="server" ></asp:Label>
here i need how to assign that
url value to
lbl_key i need below output:
lbl_key="http://localhost:49162/Autocomplete/Default.aspx"
gowthaman8870226416