xtendscott
Programmer
I don't want to place page in a frame and there is redundant page information in the requested page.
<cfhttp method="get" url="#PageSource#" resolveurl="yes">
<cfoutput>#CFHTTP.FileContent#</cfoutput>
This is the code I am using above. If the page is consistant for # characters I could use mid(#CFHTTP.FileContent#, #startnumber#, #endnumber#).
How could I parse through the #CFHTTP.FileContent# to find a specific "String" to find the location of beginning and end when page is not consistant?
<cfhttp method="get" url="#PageSource#" resolveurl="yes">
<cfoutput>#CFHTTP.FileContent#</cfoutput>
This is the code I am using above. If the page is consistant for # characters I could use mid(#CFHTTP.FileContent#, #startnumber#, #endnumber#).
How could I parse through the #CFHTTP.FileContent# to find a specific "String" to find the location of beginning and end when page is not consistant?