There are some limitations or rather you can say security related to SharePoint pages when it comes to JavaScript which access server side control. You cannot write directly access server side controls using JavaScript you need to make certain tweaks for this to work.
1.Make web.config changes so that you can access controls using JavaScript without getting “Page Parser Error message code blocks are not allowed”.
If you have scenario where you want to allow JavaScript in a particular page then you have to make the below entries in your pages
For ASPx Pages
<PageParserPaths> <PageParserPath VirtualPath="/pages/[file name].aspx" CompilationMode="Always" AllowServerSideScript="true" /> </PageParserPaths>
For master page, this will enable inline code blocks for all master pages:
<PageParserPaths> <PageParserPath VirtualPath="/_catalogs/masterpage/*" CompilationMode="Always" AllowServerSideScript="true" /> </PageParserPaths>
Making these changes will allow users who have access to Content DB to embed JavaScript in your site using SharePoint Designer.
2.The other option is to user HTML controls in your page. But even in this scenario SharePoint will adds an Auto Generated ID suffix and the control id changes like the one give below.
label id="lblName{generate-id}
So you may have to remove the auto generated suffix and keep only the label id.
So here goes the JavaScript which you can embed in a SharePoint page at the bottom and set the value of the control based on the query string
<script type="text/javascript"> var query = location.search.substring(1); if(query!=null) { var query = location.search.substring(1).split('&'); if(query .length>0) { var keys = query[0]; var key = keys.split('='); var control= document.getElementById('lblName'); if(control!=null && key.length>0) { Control.innerText = key[1] ; } } } </script>