Thanks Falcon99, but I don't think that's it. I can connect to https://www.thesite.com just fine, but when I use that URL in the DataURL field of the TDC, it doesn't work.
I'm trying to download data from one web site to another using the MS Tabular Data Control. Before you ask, the two sites are on different domains, and I have the TDC security relaxed so it can connect across domains.
Everything was working fine until the source site installed SSL. I've...
You could have the link go to an ASP page that logs which user is viewing which document, then redirects to the actual document. On the user's side they wouldn't notice anything, unless they tried to do a right-click and "save target as"... in which case they'd get your ASP page output...
If you're still getting the records sorted like "1, 10, 11, 12" then you're probably not using a number data type for that field - more likely it's a string type. Check your data type.
Does anyone have a quick way to determine the median of a set in a SELECT statement (or otherwise)? Ideally I wish there was a MEDIAN T-SQL function that worked like like AVG.
If you don't want the buttons to appear on the print job, you could keep everything on one page (no frames) and use DHTML to hide the buttons before the print and restore them after.
...
buttons.style.display = 'none';
window.print;
buttons.style.display = '';
...
msturges, are you trying to upload a file from the client to the server via ftp and a batch file? I don't think that will work. You should look into a product like www.aspupload.com or write your own http upload control.
Here's a database tip I use in all my projects: Give each table a 3 or 4 character code, then prefix all field names in that table with the code.
For example, your "user" table might have a 3 letter code of "USR" so the fields would be named USR_Name, USR_Password...
Using InStr to check the contents of the session variable for each day would also work.
If instr(Session("NotWork"), "M") then
turn on Monday check box
end if
if instr(Session("NotWork"), "T") then
turn on Tuesday check box
end if
Only problem is...
The easiest thing to do would be to create a DLL with Visual Basic or C++ that will control the camera and send the strings to the com ports. Then include that .DLL in your ASP page just like an activeX control and you can pass it parameters with ASP.
Use a FILE input box: <INPUT TYPE=FILE NAME=FILE1>
and then upload that file to your web server. See www.aspupload.com for details on uploading via HTTP.
It's probably because changing to the directory before /utils would move beyond the root of the webserver. If using "/utils/colorConst.asp" worked and "../utils/coorConst.asp" did not, that is likely the problem.
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.