What's in the CreateXMLobject.asp? Are there XML files you can look at?? Otherwise it looks like it might all be in that momdata folder...
-----Original Message----- From: Portman [mailto:[EMAIL PROTECTED] Sent: Thursday, May 22, 2008 8:53 AM To: [email protected] Subject: RE: [wdvltalk] Any ASP gurus out there? Hi Cheryl, Thanks for the reply. I did look at all the files mentioned in the head section, but nothing had what I was looking for. The head section says this: <%on error resume next%> <% session("showdept")=cstr(Request.QueryString("dept")) if len(trim(session("showdept"))) = 0 then session("showdept") = 0 end if if isnumeric(session("showdept")) = false then response.Redirect("default.asp") end if %> <!--#INCLUDE FILE = "include/momapp.asp" --> <!--#INCLUDE FILE = "CreateXmlObject.asp" --> <% 'response.write(len(trim(session("showdept")))) if session("showdept") > 0 then if sitelink.hassubdepts(cint(session("showdept")))=0 then set sitelink=nothing set ObjDoc = nothing Response.Redirect("products.asp?dept="+cstr(session("showdept"))) end if end if desc = sitelink.DEPARTMENTDESCRIPTION(session("showdept")) dept_title = trim(sitelink.DEPARTMENT_Title(session("showdept"))) xmlstring =sitelink.READ_METATAG(session("showdept"),cstr("")) objDoc.loadxml(xmlstring) set SL_Dept_Meta = objDoc.selectNodes("//results") if SL_Dept_Meta.length > 0 then metatagtitle = SL_Dept_Meta.item(0).selectSingleNode("ptitle").text metatagdesc = SL_Dept_Meta.item(0).selectSingleNode("pdesc").text metatagkeywrd = SL_Dept_Meta.item(0).selectSingleNode("pkeywrd").text usethismeta="<title>"+ cstr(metatagtitle) +"</title>" usethismeta =usethismeta + VbCrLf usethismeta =usethismeta + "<META NAME=""KEYWORDS"" CONTENT="""+ cstr(metatagkeywrd) + """>" usethismeta =usethismeta + VbCrLf usethismeta =usethismeta + "<META NAME=""DESCRIPTION"" CONTENT="""+ cstr(metatagdesc) + """>" else usethismeta = "<title>"+ cstr(dept_title)+ "-" + cstr(session("althomepage")) +"</title>" end if set SL_Dept_Meta = nothing %> <html> <head> <%=usethismeta%> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" href="text/topnav.css" type="text/css"> <link rel="stylesheet" href="text/sidenav.css" type="text/css"> <link rel="stylesheet" href="text/storestyle.css" type="text/css"> </head> <!--#INCLUDE FILE = "text/Background5.asp" --> Riva On 5/22/2008 9:16 AM, Cheryl D Wise wrote: > It could be almost anything. Usually it would pull from a database but > there may be a include file that contains variables with text strings > that can be pulled from. There could be an xml file or one of several different options. > Look in the head section for included files, database connections and > sql statements. > > Cheryl D Wise > MS MVP Expression - Author: Foundations of Microsoft Expression Web > http://by-expression.com Adobe Community Expert - Dreamweaver > http://starttoweb.com ____ . The WDVL Discussion List from WDVL.COM . ____ To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] or use the web interface http://e-newsletters.internet.com/discussionlists.html/ Send Your Posts To: [email protected] To change subscription settings, add a password or view the web interface: http://intm-dl.sparklist.com/read/?forum=wdvltalk ________________ http://www.wdvl.com _______________________ You are currently subscribed to wdvltalk as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] To unsubscribe via postal mail, please contact us at: Jupitermedia Corp. Attn: Discussion List Management 475 Park Avenue South New York, NY 10016 Please include the email address which you have been contacted with. ____ The WDVL Discussion List from WDVL.COM ____ To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] or use the web interface http://e-newsletters.internet.com/discussionlists.html/ Send Your Posts To: [email protected] To change subscription settings, add a password or view the web interface: http://intm-dl.sparklist.com/read/?forum=wdvltalk ________________ http://www.wdvl.com _______________________ You are currently subscribed to wdvltalk as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] To unsubscribe via postal mail, please contact us at: Jupitermedia Corp. Attn: Discussion List Management 475 Park Avenue South New York, NY 10016 Please include the email address which you have been contacted with.
