Scotty_32
Perch
i was lookin at your site, and i was looking at the 'sign-up' system....
you have:
on the "choose your username / password" page, which is a cgi file, that looks like ASP to me
also do you have any basic demos you could send me of the API using 'Classic ASP' as id love to use it so i can offer email addresses on my site, and the only way (i can think) of it being automated is by using the API
and if you have demos of a custom signup page that'd be great too, as i the one thing i dislike about the signup process is its hard to see the 'next' button, and after seeing your site, i like the idea of the sign up being part of my site
you have:
Code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% Dim strURL, strLength, counter, findSlash, lastSlash, pagename strURL = Request.ServerVariables("URL") strLength = len(strURL) FOR counter=1 TO strLength findSlash=instr(counter,strURL,"/") IF findslash = 0 then lastSlash = instr(counter-1,strURL,"/") exit FOR END IF NEXT pagename = Mid(strURL,lastSlash+1,strLength) %>
also do you have any basic demos you could send me of the API using 'Classic ASP' as id love to use it so i can offer email addresses on my site, and the only way (i can think) of it being automated is by using the API
and if you have demos of a custom signup page that'd be great too, as i the one thing i dislike about the signup process is its hard to see the 'next' button, and after seeing your site, i like the idea of the sign up being part of my site