Click here to Skip to main content
15,896,118 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: asp.Net Pin
Sandeep Mewara13-Nov-12 21:45
mveSandeep Mewara13-Nov-12 21:45 
QuestionExecute javascript before page_Load Pin
jojoba201110-Nov-12 19:51
jojoba201110-Nov-12 19:51 
AnswerRe: Execute javascript before page_Load Pin
jkirkerx10-Nov-12 19:55
professionaljkirkerx10-Nov-12 19:55 
QuestionRe: Execute javascript before page_Load Pin
jojoba201110-Nov-12 20:04
jojoba201110-Nov-12 20:04 
AnswerRe: Execute javascript before page_Load Pin
xut244714-Nov-12 20:20
xut244714-Nov-12 20:20 
AnswerRe: Execute javascript before page_Load Pin
jkirkerx10-Nov-12 20:12
professionaljkirkerx10-Nov-12 20:12 
QuestionRe: Execute javascript before page_Load Pin
jojoba201110-Nov-12 20:21
jojoba201110-Nov-12 20:21 
AnswerRe: Execute javascript before page_Load Pin
jkirkerx11-Nov-12 12:08
professionaljkirkerx11-Nov-12 12:08 
I don't know what your trying to do, but the link did offer several suggestions.

If you want to execute some javascript on page load, you use the body tag and enter a javascript function to run on your tag onLoad.
<script>
  function initialize() {

    // Map initialization

  }
</script>
<body onload="initialize()">
  <div id="map_canvas"></div>
</body>


Google Maps uses this, to initialize the map object, and request map data before the page is drawn in the browser. When the map canvas is available in the DOM, the map object then draws the map in the map canvas.

If you want to execute some javascript when the DOM intializes, usually 2 seconds after the page paints in the browser window,

window.onload = function() {
     init();
     doSomethingElse();
};

function init() {
     var tempValue = document.getElementById(txtHiddenDomain).value;
     alert(tempValue);
     
     document.getElementById(txtHiddenDomain).value = "test value"
}

function doSomethingElse() {


}

If you can't get the value, then double check your ID attribute for the control. If you use the controls ID, then perhaps the ID is changing to another value, so you have to hard code the ID using id="_txt_textbox"

you had your id wrapped in <% %>, so do a response.write(<% %>) and double check the value printed.
QuestionRe: Execute javascript before page_Load Pin
jojoba201111-Nov-12 17:24
jojoba201111-Nov-12 17:24 
AnswerRe: Execute javascript before page_Load Pin
jkirkerx11-Nov-12 18:28
professionaljkirkerx11-Nov-12 18:28 
QuestionLogin control doesn authenticate user after closing/changing database Pin
thes@int10-Nov-12 10:02
thes@int10-Nov-12 10:02 
AnswerRe: Login control doesn authenticate user after closing/changing database Pin
jkirkerx10-Nov-12 20:04
professionaljkirkerx10-Nov-12 20:04 
GeneralRe: Login control doesn authenticate user after closing/changing database Pin
thes@int10-Nov-12 22:11
thes@int10-Nov-12 22:11 
GeneralRe: Login control doesn authenticate user after closing/changing database Pin
jkirkerx11-Nov-12 11:32
professionaljkirkerx11-Nov-12 11:32 
GeneralRe: Login control doesn authenticate user after closing/changing database Pin
thes@int13-Nov-12 2:14
thes@int13-Nov-12 2:14 
GeneralRe: Login control doesn authenticate user after closing/changing database Pin
jkirkerx13-Nov-12 6:57
professionaljkirkerx13-Nov-12 6:57 
QuestionIt takes too long to execute a query in aspx page Pin
Abdul Rahman Hamidy9-Nov-12 20:10
Abdul Rahman Hamidy9-Nov-12 20:10 
AnswerRe: It takes too long to execute a query in aspx page Pin
jkirkerx10-Nov-12 19:58
professionaljkirkerx10-Nov-12 19:58 
GeneralRe: It takes too long to execute a query in aspx page Pin
David Mujica13-Nov-12 3:53
David Mujica13-Nov-12 3:53 
QuestionProblem with MapPageRoute Pin
Jassim Rahma9-Nov-12 8:50
Jassim Rahma9-Nov-12 8:50 
AnswerRe: Problem with MapPageRoute Pin
fjdiewornncalwe9-Nov-12 9:46
professionalfjdiewornncalwe9-Nov-12 9:46 
GeneralRe: Problem with MapPageRoute Pin
Jassim Rahma9-Nov-12 9:50
Jassim Rahma9-Nov-12 9:50 
Question{36D27C48-A1E8-11D3-BA55-00C04F72F325} failed due to the following error: 80010001 Call was rejected by callee. Pin
Member 95859818-Nov-12 23:55
Member 95859818-Nov-12 23:55 
AnswerRe: {36D27C48-A1E8-11D3-BA55-00C04F72F325} failed due to the following error: 80010001 Call was rejected by callee. Pin
jkirkerx10-Nov-12 20:09
professionaljkirkerx10-Nov-12 20:09 
QuestionHi friends i want to create a web application Pin
VinothData8-Nov-12 23:52
VinothData8-Nov-12 23:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.