Click here to Skip to main content
16,005,162 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP.Net & C# Pin
KBM731-Nov-07 4:50
KBM731-Nov-07 4:50 
AnswerRe: ASP.Net & C# Pin
pmarfleet1-Nov-07 6:06
pmarfleet1-Nov-07 6:06 
QuestionSQLDataSource Pin
recono11-Nov-07 4:38
recono11-Nov-07 4:38 
AnswerRe: SQLDataSource Pin
dataminers1-Nov-07 6:59
dataminers1-Nov-07 6:59 
GeneralRe: SQLDataSource Pin
dataminers1-Nov-07 14:07
dataminers1-Nov-07 14:07 
QuestionFirefox script Pin
Mr.Sam1-Nov-07 3:45
Mr.Sam1-Nov-07 3:45 
AnswerRe: Firefox script Pin
Guffa1-Nov-07 9:21
Guffa1-Nov-07 9:21 
AnswerRe: Firefox script Pin
Pete O'Hanlon1-Nov-07 11:53
mvePete O'Hanlon1-Nov-07 11:53 
If you're trying to dynamically run a script, you can do this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Dynamically Loading JavaScript :: Loading thru Src</title>
<script type="text/javascript">
 function dynamicLoadJS(scriptName) {
	var head = document.getElementsByTagName("head")[0];
	script = document.createElement('script');
	script.id = "DynaScript";
	script.type = 'text/javascript';
	script.src = scriptName;
	head.appendChild(script);
 	document.getElementById("LoadJS").disabled="true";
	document.getElementById("CallJS").disabled="";
}</script>
</head>
<body>
	<button id="LoadJS" onclick="dynamicLoadJS('./onDemandJs.js');">Load JavaScript</button>
	<button id="CallJS" onclick="showHtml();" disabled="disabled">Call method from new load</button>
</body>
</html>


Deja View - the feeling that you've seen this post before.

QuestionPageRequestManagerServerErrorException 12030 when clicking a Button Pin
Herman<T>.Instance1-Nov-07 3:02
Herman<T>.Instance1-Nov-07 3:02 
QuestionProblem while finding control inside gridview Pin
rahul.net111-Nov-07 2:50
rahul.net111-Nov-07 2:50 
AnswerRe: Problem while finding control inside gridview Pin
Imran Khan Pathan1-Nov-07 3:08
Imran Khan Pathan1-Nov-07 3:08 
GeneralRe: Problem while finding control inside gridview Pin
rahul.net111-Nov-07 3:52
rahul.net111-Nov-07 3:52 
AnswerRe: Problem while finding control inside gridview Pin
Herman<T>.Instance1-Nov-07 3:12
Herman<T>.Instance1-Nov-07 3:12 
GeneralRe: Problem while finding control inside gridview Pin
rahul.net111-Nov-07 3:53
rahul.net111-Nov-07 3:53 
GeneralRe: Problem while finding control inside gridview Pin
Herman<T>.Instance1-Nov-07 4:01
Herman<T>.Instance1-Nov-07 4:01 
GeneralRe: Problem while finding control inside gridview Pin
rahul.net111-Nov-07 4:05
rahul.net111-Nov-07 4:05 
GeneralRe: Problem while finding control inside gridview Pin
rahul.net111-Nov-07 4:11
rahul.net111-Nov-07 4:11 
GeneralRe: Problem while finding control inside gridview Pin
Herman<T>.Instance1-Nov-07 4:23
Herman<T>.Instance1-Nov-07 4:23 
GeneralRe: Problem while finding control inside gridview Pin
rahul.net111-Nov-07 5:33
rahul.net111-Nov-07 5:33 
Questiontimer in asp.net Pin
prachishah1-Nov-07 2:35
prachishah1-Nov-07 2:35 
AnswerRe: timer in asp.net Pin
InsDev1-Nov-07 2:37
InsDev1-Nov-07 2:37 
Answertimer in asp.net Pin
Sarani Ravindran1-Nov-07 2:48
Sarani Ravindran1-Nov-07 2:48 
AnswerRe: timer in asp.net Pin
Saksida Bojan1-Nov-07 2:48
Saksida Bojan1-Nov-07 2:48 
AnswerRe: timer in asp.net Pin
Paddy Boyd1-Nov-07 6:35
Paddy Boyd1-Nov-07 6:35 
GeneralRe: timer in asp.net Pin
jaygross9-Nov-07 9:10
jaygross9-Nov-07 9:10 

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.