Quick question for you guys:
Do you know of any software plug-in, add-on, or whatever that will create a dynamically generated powerpoint presentation from a dynamically generated asp page?
The Code:
function getprojectinfo(pn,pd,yr,var)
call opendb()
strsql = "select pid," & var & " from pbr where projectnumber = '" & pn & "' and period = '" & pd & "' and year = '" & yr & "';"
'response.write strsql
set objrs = objconn.execute(strsql)
if objrs.eof or objrs.bof then
strsql...
Okay ... I have an ASP which is creating a page with information pulled from an SQL database.
Within this page, there are scripts (via an include) that generates a PPT and saves the PPT file to the server.
When I run the page without the PPT scripts, the page loads in one second .... when I...
Yea! I'm a superstar:
Sub Worksheet_Change(ByVal Target As Range)
Dim WatchRange As Range
Dim IntersectRange As Range
Set WatchRange = Range("A1:A10")
Set IntersectRange = Intersect(Target, WatchRange)
If IntersectRange Is Nothing Then
'Do Nothing Spectacular...
Oh, and if you select sessions, you'll want to read:
http://www.tek-tips.com/faqs.cfm?fid=2037
(which is the second or third time that that FAQ has popped up today...odd)
There's always the session variable(s). You have to store the responses somewhere. Your choices are:
1) Cookies (as you stated)
2) Session Variables (you're switching between the two "sides")
3) Database (You'd be banking that people actually somehow finish the transaction)
4) QueryString...
I'm guessing you are attempting to pass those POST variables from the HTTPS side to the HTTP side ... and, it isn't going to work like that.
Why are you having them go back and forth between HTTPS and HTTP?
I have a MSWord document that has a table with 8 rows and 2 columns. The first column lists questions (1 per row). The second column is answered either "yes" or "no".
Is there a way to retrieve that "yes" or "no" from MSAccess using VBA?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.