• InterDev template

    Author
    Topic
    #377163

    I’m learning to use InterDev from a book (Sams Teach Yourself Visual InterDev 6 in 24 Hours) and have created a template that contains the following:

    [Project Name] Technical Documentation

    Now I’ve changed that to prompt the user for the Project Name (all HTML shown):

    Technical Documentation

    This does create a new copy when selected from the ADD box, but it doesn’t prompt for the ‘Project Name’. Can anyone point out what I’m doing wrong? I’m trying to get everything to work before proceeding.

    Thanks!

    Randy

    Viewing 0 reply threads
    Author
    Replies
    • #620446

      I think you’re confusing this with a parameter query in Access. ASP runs on the Server-side. It sounds like you’re asking for an Input box on the client side. You would need to use either a Form field or Javascript for this.

      Are you planning to store the value in a database of some sort or just display it on the page?

      If you just want to display the value you can use code like this:

      
      
      <form action="" method="post">
      
      Enter the Project Name: 
      
      
      
       Technical Documentation
      
      
      
      
      
      
      • #620478

        Thanks for the help. This is supposed to just prompt the user for the Project Name so they don’t forget to input it, and then use it for the new page. It’s not to be stored anywhere else. I pasted your code into a new page, but I if I try to go into Design view I get “The editor is unable to switch to Design view because there is unquoted ASP script in a attribute value or inside a tag.

        When I switch to Quick View it looks like ” method=”post”>Enter the Project Name [an input box] [a submit button] Technical Documentation [a clear value button]. If I press one of the buttons it goes to the “The Page Cannot Be Found” screen.

        I appreciate your help — I think that the best way to figure this out is to keep stumbling around in it. I am having fun doing it.

        Thanks,

        Randy

        • #620482

          I see what you mean. One thing you should understand is that ASP is based on code (usually VBScript). Although there is an aspect of web design (i.e. page layout with HTML), you have to understand the concepts of scripting before you can do much with ASP.

          If you’ll look at my example, you’ll see that it is based on an IF statement. I’ll translate:

          I used a Request.ServerVariables for the Form’s action (because I didn’t know your file’s name and this will grab the name of the file for you).
          If the Form variable “ProjectName” is not empty, then write: Enter Project Name (textbox), (submit button).
          Otherwise (the Form variable “ProjectName” is NOT empty – this assumes the form has been submitted to itself) then write: the ProjectName variable and “Technical Documentation”, (another submit button that will submit the form again, this time with an empty ProjectName variable, which will trigger the first part of the IF statement).

          Does that make more sense? You will NOT be able to view most ASP files in “Design” view because they don’t work that way. The Design view will not know what to do with the blocks of script. Most ASP pages are generated from script that is interpreted by the server at run time. That’s just the nature of ASP.

          Hope this helps!

          PS – just to clarify how to use my previous example: Copy the entire block of code and save it as its own file. Call it anything you like, but end it with .ASP. Then view the file in a web browser through your server, such as: http://Server/test/ScriptTest.asp

    Viewing 0 reply threads
    Reply To: InterDev template

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: