5,662,937 members and growing! (723 online)
Email Password   helpLost your password?
Web Development » HTML / CSS » HTML     Intermediate

Refreshing only part of your Web Page

By Dan Madden

An article on refreshing objects on your Web Page without having to refresh the entire page
SQL, HTMLWindows, Win2KSQL Server, IE, DBA, Dev

Posted: 8 May 2001
Updated: 8 May 2001
Views: 131,998
Bookmarked: 34 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
8 votes for this Article.
Popularity: 3.37 Rating: 3.73 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
1 vote, 50.0%
4
1 vote, 50.0%
5

Top Ten Picture

Background

I needed to make a portion of Web Page to refresh without refreshing the entire page. Everytime I tried, it would always refresh the entire page. I got very frustrated, then I read an article from CodeProject (CodeProject Discussion Boards) and thought I would talk to Uwe Kein (the Author) about this. His suggestion was to use Remote Scripting which by the articles I read was the way to go. Unfortunately, my company didn't have that installed on their dev or production systems. I couldn't wait for them, so I tried scriptlets. After a lot of trial and error, I got it to work. I am writing this article to try and help anyone else in this situation.

What will this do for you?

Show you how to refresh a scriptlet every second using a timer inside the scriptlet. This example uses a DNS-Connection-less (meaning you don't have to create a System DNS entry through ODBC) way to access the MS-Access database, but you can adapt it to any other by changing the ConnectionString (see below formats):

    
//Build the connection string

//

//ConnectionStringFormat(seebelow):

//ConnectionString="DRIVER=SQLServer;SERVER=MySQLServer;CATALOG=MyDatabase;UID=USERID;PWD=Password";

//

//forSQL7.0:

//ConnectionString="DRIVER=SQLServer;SERVER=TopTen;CATALOG=TopTen;UID=TopTen;PWD=TopTen";

//

//for Access Database (on Server):

//ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;" &_

//                   "Data Source=\\\\SERVER\\Share\\directory\\TopTen.mdb";

//

//for Access Database (on local drive):

//ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;" &_

//                   "Data Source=C:\\Database\\TopTen.mdb";

I have included an Access2000 Database called/Located at C:\TopTen\TopTen.mdb to use for the example, or you can use the text file TopTen.txt which will create a Table, User Login, User Role, Primary Key, and Insert ten rows for an SQL 7.x database.

Note: if you want to use ASP (server calls) code, write it as a "JavaScript" function and use RUNAT=server in the <SCRIPT> Tag.

What are scriptlets

Scriptlets are HTML pages that heavily exploit the DHTML object model. Here is how simple it is...write a normal HTML file. Create an function for the scriptlet called "CreatePage". Now, create a "new" object called public_description and assign it the result of the function. This function works as a the constructor of the scriptlet object. In one sense, the public_description variable is like a header file for a C++ class. It defines all the properties and methods that the scriptlet exposes. See the example below:

// declare the object interface (constructor)

public_description = new CreatePage();
var InScriptlet = (typeof(window.external.version) == "string");

// set some variables

mEnabled = 1;
mTimer = 0

function CreatePage() {
	this.Refresh = Refresh;
	this.Enable = Enable;
}

Since a scriptlet is an HTML or ASP page (and can also be displayed as a stand-alone document), you might occasionally incur a system error due to a property or a method that IE 4 (or higher) doesn't find. This only happens if your scriptlet attempts to access its parent environment. To work around this you need a way to detect whether a given page is viewed as a scriptlet or not. Since the external object gets initialized if, and only if, an HTML page is running as a scriptlet, provide a boolean variable as a safeguard and access the external object only when it is absolutely safe to do so.

var InScriptlet = (typeof(window.external.version) == "string");

The variable above InScriptlet will contain True or False, according to the type of the property external.version (current version of the scriptlet engine). You can now use InScriptlet in your code to determine how the page is being viewed.

The way to get it to refresh is either by calling the "Refresh" method or by setting a timer in the window.onLoad event:

mTimer = window.setInterval( "DoUpdatePage()", 1000, "VBScript" )

Since both ActiveX controls and scriptlets are inserted through the same tag <OBJECT>, you need to make the browser distinguish between them (see below).

ActiveX Control:

<OBJECT>
  id="Button1"
  classid="..."
  width="..."
  height="..."
  <param name="...">
</OBJECT>

Scriptlet:

<OBJECT>
  id="TopTen"
  data="TopTen.htm"
  width="..."
  height="..."
  type="text/x-scriptlet"
</OBJECT>


That's it...let me know what you think!

Acknowledgements

For a good book/examples check out Scriptlets and for the examples in the book, go to Examples

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Dan Madden


I have been programming for 12 years (Unix C, Scripting, VB, C++). I am getting too old to talk about it and been in the Security line of work (both Military/Civilian) for 17+ years.
Occupation: Web Developer
Location: United States United States

Other popular HTML / CSS articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 25 (Total in Forum: 25) (Refresh)FirstPrevNext
Questionasp.netmemberabhay_smpr20:49 24 Aug '06  
GeneralHow i Refresh only part of web pagememberprakash42:50 22 Mar '05  
Generalserver side databasememberSWARYA23:07 29 Feb '04  
GeneralFunctions in ASPmemberAnonymous18:33 20 Jun '02  
GeneralsmemberAnonymous21:54 17 Aug '01  
GeneralOne more way!!!memberDhandapani Ammasai13:44 10 May '01  
GeneralRe: One more way!!!memberDaniel Madden18:23 10 May '01  
GeneralRe: One more way!!!memberDhandapani Ammasai18:40 10 May '01  
GeneralRe: One more way!!!memberDaniel Madden18:53 10 May '01  
GeneralRe: One more way!!!memberDhandapani Ammasai19:12 10 May '01  
GeneralRe: One more way!!!memberDaniel Madden19:32 10 May '01  
GeneralRe: One more way!!!memberRukhiya20:57 28 May '01  
GeneralRe: One more way!!!memberDaniel Madden21:07 28 May '01  
GeneralRe: One more way!!!memberJerry III13:05 9 Nov '01  
GeneralRe: One more way!!!memberVasudevan Deepak Kumar23:15 30 Nov '05  
GeneralAn easier way...memberAnonymous3:19 9 May '01  
GeneralRe: An easier way...memberDaniel Madden10:27 9 May '01  
GeneralRe: An easier way...memberAnonymous3:34 11 May '01  
GeneralRe: An easier way...memberDaniel Madden3:01 14 May '01  
GeneralRe: An easier way...memberAnonymous22:56 24 Apr '02  
GeneralRe: An easier way...sussAnonymous4:27 30 Apr '04  
Generalnot very efficientmemberAnonymous0:23 9 May '01  
GeneralRe: not very efficientmemberSteven J. Ackerman7:01 9 May '01  
GeneralRe: not very efficientmemberAnonymous22:08 9 May '01  
GeneralRe: not very efficientmemberDaniel Madden10:19 9 May '01  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 8 May 2001
Editor: Chris Maunder
Copyright 2001 by Dan Madden
Everything else Copyright © CodeProject, 1999-2008
Java | Advertise on the Code Project