Advertisement
Advertisement
| 03.21.2008 at 07:37AM PDT, ID: 23259715 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 03.21.2008 at 10:31AM PDT, ID: 21181529 |
| 03.21.2008 at 12:17PM PDT, ID: 21182377 |
| 03.21.2008 at 01:39PM PDT, ID: 21182994 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script src="engine.js"></script>
<script type="text/javascript">
function refreshArticles(){
http( "GET" , "articles.cfm" , articlesResponse ); //notice the third argument = articlesResponse. This is the callback function below.
}
function articlesResponse(res){ //callback functions always take one argument. This is the result passed back from the server.
document.getElementById("ArticleDiv").innerHTML = res;
setTimeout(refreshArticles(),300000);//this will call the refreshArticles function again in 5 minutes.
}
</script>
<link rel="STYLESHEET" type="text/css" href="northwind.css">
</head>
<body onLoad="refreshArticles();"><!-- here is where we call the server for the first time. -->
<DIV class="ArticleDiv"></DIV>
</body>
</html>
|
| 03.25.2008 at 10:27AM PDT, ID: 21204034 |
| 03.25.2008 at 10:58AM PDT, ID: 21204343 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: |
Test.cfm
--------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script src="engine.js"></script>
<script type="text/javascript">
function refreshArticles(){
http( "GET" , "articles.cfm" , articlesResponse ); //notice the third argument = articlesResponse. This is the callback function below.
}
function articlesResponse(res){ //callback functions always take one argument. This is the result passed back from the server.
document.getElementById('ArticleDiv').innerHTML = res;
setTimeout(refreshArticles,1000);//this will call the refreshArticles function again in 5 minutes.
}
</script>
<link rel="STYLESHEET" type="text/css" href="northwind.css">
</head>
<body onLoad="refreshArticles();"><!-- here is where we call the server for the first time. -->
<DIV id="ArticleDiv" class="HTMLOutput"></DIV>
</body>
</html>
articles.cfm
--------------------------------------
<cfsetting enableCFoutputOnly="Yes" showdebugoutput="No">
<cfsavecontent variable="HTMLOutput">
<CFOUTPUT>
<LINK HREF="css/Sample.css" REL="stylesheet" TYPE="text/css">
<TABLE WIDTH="550">
<TR>
<TD CLASS="todaylink">
<A HREF="test">test</SPAN>
</TD>
</TR>
<TR>
<TD CLASS="searchex">
Current Time: #dateformat(now(),"mm/dd/yy")# #timeformat(now(),"HH:mm:ss")#
</TD>
</TR>
</TABLE>
</CFOUTPUT>
</cfsavecontent>
<cfwddx action="CFML2JS" input="#HTMLOutput#" toplevelvariable="response">
|
| 03.25.2008 at 11:01AM PDT, ID: 21204364 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: |
Test.cfm
--------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script src="engine.js"></script>
<script type="text/javascript">
function refreshArticles(){
http( "GET" , "articles.cfm" , articlesResponse ); //notice the third argument = articlesResponse. This is the callback function below.
}
function articlesResponse(res){ //callback functions always take one argument. This is the result passed back from the server.
document.getElementById('ArticleDiv').innerHTML = res;
setTimeout(refreshArticles,1000);//this will call the refreshArticles function again in 5 minutes.
}
</script>
<LINK HREF="css/Sample.css" REL="stylesheet" TYPE="text/css">
</head>
<body onLoad="refreshArticles();"><!-- here is where we call the server for the first time. -->
<DIV id="ArticleDiv" class="HTMLOutput"></DIV>
</body>
</html>
articles.cfm
--------------------------------------
<cfsetting enableCFoutputOnly="Yes" showdebugoutput="No">
<cfsavecontent variable="HTMLOutput">
<CFOUTPUT>
<TABLE WIDTH="550">
<TR>
<TD CLASS="todaylink">
<A HREF="test">test</SPAN>
</TD>
</TR>
<TR>
<TD CLASS="searchex">
Current Time: #dateformat(now(),"mm/dd/yy")# #timeformat(now(),"HH:mm:ss")#
</TD>
</TR>
</TABLE>
</CFOUTPUT>
</cfsavecontent>
<cfwddx action="CFML2JS" input="#HTMLOutput#" toplevelvariable="response">
|
| 03.26.2008 at 06:55AM PDT, ID: 21211620 |