Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. xStrongTowerx

    Synax question for HTML-spanning Subs

    Question: If I instead used the FSO to include files, would it be able to process aspx files and run the scripts, or only to output html to the browser? i.e. (this is VBScript and would have to be updated to VB.NET) if request("param")= 2 then filespec =...
  2. xStrongTowerx

    Need help with image resize script

    I thought I had already posted this before, but it's not on here. I got it all fixed, and here's my final code: <%@ Page Language=&quot;VB&quot; Debug=&quot;true&quot; %> <%@ Import Namespace=&quot;System.IO&quot; %> <%@ Import Namespace=&quot;System.Drawing.Imaging&quot; %> <script...
  3. xStrongTowerx

    Synax question for HTML-spanning Subs

    Hi, I'm migrating to ASP.NET from ASP 3 and I have a question about syntax. Apparently, all code in ASP.NET occurs between <script>...</script> tags rather than using <%...%>. So my question is, is it still possible to have a subroutine that spans HTML like this: <script...
  4. xStrongTowerx

    Need help with image resize script

    If you look at my original script, all I'm trying to do is resize one image for now, although the directory thumbnailing would be fun in the future, I don't need it at the moment. However, I have a more fundamental problem, which is that even if I change a simple HTML file to an .aspx...
  5. xStrongTowerx

    Need help with image resize script

    So, is it that I'm not declaring the @ Page language as VB? I've tried commenting out both @ namespace lines, and it still doesn't work. I'm thinking ASP.NET isn't set up correctly on the server, because if I change the extension to .asp It works, except I get ASP errors such as: The specified...
  6. xStrongTowerx

    Need help with image resize script

    No, I don't think I'm pointing to a bad directory, because even when I reduce the script to what's below, and then call it directly, I'm still asked to log in and then told I'm not authorized to access the page. <%@ Import Namespace=&quot;System.IO&quot; %> <%@Import...
  7. xStrongTowerx

    Need help with image resize script

    Hmmm. I tried it, but it didn't make a difference. I see no precedence for importing IO on http://aspnet.4guysfromrolla.com/articles/012203-1.aspx, so I'm kind of confused. It still doesn't work, though. Do you have any idea why it would be asking me for a user name and password? Does it...
  8. xStrongTowerx

    Need help with image resize script

    Dear Forum, I'm trying to adapt a script I found on 4guysfromrolla.com, but I'm having some trouble. I've tried posting on their own messageboard, but to no avail, so I thought I'd post the question here. I must confess I'm brand new at ASP.NET, although I've been programming classic ASP for...
  9. xStrongTowerx

    Need help with DHTML doScroll() script

    I think I fixed it. <div id=&quot;BodyText&quot; style=&quot;position: relative; top: 0px; left: 0px; height: 145px; width: 204px; font: 7pt Verdana; text-align: justify; color: #FFFFFF; overflow: hidden;&quot; onmousewheel=&quot;ScrFunct()&quot;><div>Text Goes Here.</div></div> Then... <script...
  10. xStrongTowerx

    Need help with DHTML doScroll() script

    Hmmm... That didn't make a difference. I think the variable had been created implicitly.
  11. xStrongTowerx

    Need help with DHTML doScroll() script

    Dear Forum, Here's my problem: I'm trying to write a doScroll script that scrolls a text element (div style=&quot;overflow: hidden&quot;), but no matter what I try, the scrolling does not stop on mouseup. The inline HTML calls it this way: <img id=&quot;DownArrow&quot...

Part and Inventory Search

Back
Top