<%@ LANGUAGE = VBScript %> <% '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' default.asp -- ASP module used in DOE HPB green building database ' Developed by Qiang Zhang (Peter), ' The Deringer Group, Inc. All rights reserved @2000 ' Date: see the date of the file ' Function: Integrating daylighting and elect. lighting topic development page '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' %> <% Set OBJdbConn = Server.CreateObject("ADODB.Connection") 'Initialize the value of DSN to empty string DSNTitle = "DSN=HVACData;pwd=hvacdata" OBJdbConn.Open DSNTitle 'Error handling 'if (err.number>0) OR (OBJdbConn.errors.count>0) then 'response.write "Sorry, there is a problem with database! Could not open db connection" 'response.end 'end if topic = "HVAC Online" name = Request.form("cxname") message = Request.form("cxmessage") curDate = month(now) & "/" & day(now) & "/" & year(now) OK = 1 ' Make sure the name isn't blank... If name = "" then OK = 0 end if 'Make sure the message isn't blank if message = "" then OK = 0 end if if OK = 1 then Set rs2 = Server.CreateObject("ADODB.Recordset") SQLstmt = "INSERT INTO Comments (topic,name,message,curDate) VALUES ('"& topic &"','"& name &"','"& message &"','"& curDate &"')" rs2.Open SQLstmt, OBJdbConn, 3, 3 end if SelQuery = "SELECT * FROM Comments" set Comments = Server.CreateObject("ADODB.Recordset") Comments.open SelQuery, OBJdbConn, 3, 3 %> HVAC Online FAQ & Discussion

EcoAdvisor HVAC Energy Primer

Online FAQ & Discussion

 

<< Back

Q: After the page is loaded, a new window popped out. Seems interesting, but what is that?

A: HVAC Energy Primer was original developed in Macromedia Authorware and that could only be played on a CD. After Macromedia released Authorware web player, which is essentially a web-browser plugin, we were able to migrate our CD version onto our website. Each time you loaded the previous web page, an Authorware window will be automatically popped out and all the interactions will happen only in this window. Essentially, it is the same as using the CD. 

Keep in mind, sometimes you need to switch between IE window and Authorware window. One example is explained right in the next Q&A.

Q: After I clicked on a click, it stuck there without anything new showing up.

A: Some links will lead you to a new online file, which needs to be downloaded onto your local machine before it could played. Due to the security consideration, you should be asked for the permission to save the file on your hard drive. Thus, a message box will be popped out asking for the permission. You may not see the box while you are in the Authorware window, but usually you can see a blinking Internet Explorer icon on your Windows taskbar. That means you should switch back to IE window to see the box. Then switch back to the Authorware window. You only need to do this once for each file, in other words, next time you come back to the same file, no more message box will be popped out.

Q: I got this message "Error reading Authorware map file...", when using Netscape

A: First, make sure you already installed Authorware web player. Then close Netscape browser and reopen it. Go to "Preference..." to clear both your memory cache and disk cache, which could be found in "Advanced | Cache" category. Then reload the page.

According to our testing with Netscape 4.08+, several error messages tend to pop out in processes of downloading files. If somehow HVAC Primer hangs there, you can switch back to the Netscape window, you should be able to see an error message. Based on our experience, you can just ignore those messages by clicking on 'OK', and HVAC Primer will continue to work fine. During the mean time we are working vigorously to solve the problem, we do suggest you use Internet Explorer instead of Netscape. 

Q: I can't see no psychrometric chart in Psychrometric topic.

A: The psychrometric chart was made in Flash 2. A special xtra was released by Macromedia to support having Flash embeded in or linked to Authorware files. And because of the incompatibility of different version of Flash files, Macromedia also released different versions of xtras to support them. Thus, after Authorware web player installation, you should be able to find a Flash xtra called "Flashast.x32" somewhere on your hard drive, which is not compatible with our files. You need to either delete it or move it to another location. You can go by "Start | Search | For Files or Folder..." to find it. The right xtra will be automatically downloaded from our website and saved on your hard drive for future use.

Q: Any technical support available?

A: Sure. Both email or phone call will be welcome.  
     Email:   peter@deringergroup.com
     Phone: 1-510-843-9000

Comments:  
<% if NOT Comments.EOF then Comments.MoveFirst end if Do while NOT Comments.EOF if Comments("Topic") = topic then%>
Posted in <%=comments("curDate")%> sent by <%=comments("name")%>
<%=comments("message")%>
<% end if Comments.MoveNext loop %>

___________________________________________________________________________________________________

Both name and message are required to post a comment successfully.

 Name :  
 
  Message :

<% Comments.close OBJdbConn.close%>