Tagged Questions
12
votes
9answers
9k views
ASP.Net Master Page and File path issues
I'm trying to add a script reference to jQuery in my master page so that it will work for any page. It currently looks like this
<script type="text/javascript" src="jquery.js"></script>
...
2
votes
4answers
4k views
How can I access runat=“server” ASP element using javascript?
It seems everyone is doing this (in code posts etc.)...but I dont' know how :(
whenever i try to manipulate an asp element using javascript i get a "element is null" or "document is undefined" etc. ...
1
vote
1answer
53 views
document.getElementById('id').value failing in ASP.net javascript function
Hidden fields:
<input type="hidden" id="hidOrg1" runat="server" value="" />
<input type="hidden" id="hidBT" runat="server" value="" />
javascript function:
function doGetWave(obj) {
...
0
votes
4answers
1k views
Getting ID from asp.net runat server in jQuery
i'm trying make some stuffs in jQuery using asp.net. but the id from runat="server" is not the same as the id used in html.
i'm used to use this to get the id from this situation:
...