Autodesk Buzzsaw Developer
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
ASP/VB Script
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
115 Views, 1 Replies
12-08-2004 01:48 PM
I tried very simple code to login which works fine in VB, but not when I try it in an ASP app. Any ideas why?
<%@ Language=VBScript %>
<%
set projPtObj = CreateObject("ProjectPointClient.PPSession")
projPtObj.LogIn "USERNAME", "PASSWORD", "https://webfolders.buzzsaw.com/SITE"
%>
<%@ Language=VBScript %>
<%
set projPtObj = CreateObject("ProjectPointClient.PPSession")
projPtObj.LogIn "USERNAME", "PASSWORD", "https://webfolders.buzzsaw.com/SITE"
%>
*john bartak
Re: ASP/VB Script
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-05-2005 09:13 AM in reply to:
dlorenz
Are you still having this problem? When you say it doesn't work, do you get
some sort of error message?
"danclorenz" wrote in message
news:30323552.1102542554402.JavaMail.jive@jiveforu m1.autodesk.com...
> I tried very simple code to login which works fine in VB, but not when I
try it in an ASP app. Any ideas why?
>
> <%@ Language=VBScript %>
>
>
>
>
>
>
>
>
> <%
>
> set projPtObj = CreateObject("ProjectPointClient.PPSession")
> projPtObj.LogIn "USERNAME", "PASSWORD",
"https://webfolders.buzzsaw.com/SITE"
>
> %>
>
>
>
>
