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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by feliciano

  1. feliciano

    executing a setup with language parameter

    Hi, I have a multilanguage setup. And I would like to run the setup exe passing the language to use as a parameter, I mean in the way of "C:\Setup.exe /language". Is it possible?? Thankx in advance for your help
  2. feliciano

    ASP to retreive xml data

    Hi Riksta, To search in a XML from ASP you need to use a XML parser. I do use XML in my ASP pages the code I use and works properly is the following one: Dim xmldom, isload, xmlnode, xmlnodelist1 Set xmldom = Server.CreateObject("Microsoft.XMLDOM") xmldom.async=false isload =...
  3. feliciano

    Login Help

    Thankx shaddow, I will check for my pages to use the Session.Abandon
  4. feliciano

    Login Help

    Hi Shaddow, I agree with your code, but I do have a question the Session.Abandon should not be on the Session_OnEnd of the global.asa file? If not you destroy all the session variables you could been using isn't it?
  5. feliciano

    Execute Server Side Script ??

    Vikramonline That's the way it has to be done. For your knowledge you should know that asp variables can be passed to JavaScript functions but not in the other way. Lets say you have a public page where you can download a file only if you are loggeg in then you can use JavaScript as GaryC123...
  6. feliciano

    Login Help

    Hi I don't understand what you mean with signout, if you mean when the user choose Log Off you just have to set the session variable to False on the log off page. Also you should set to False the session variable on the Session_OnEnd script from the global.asa file. Hope it helps
  7. feliciano

    Login Help

    Hi, I'm not an expert on this matter but I bypass your same problem using a session variable to know if someone has logged on. In the global.asa I initialize a session variable to false lets say Session("Validate") = False, then in the login page if the login and password is ok I set...
  8. feliciano

    Dynamically check a multiselect listbox with checkboxes

    Thank you for not having any answer to the question. Maybe it was a dummy question or you didn't know the answer. Well it doesn't matter, for those who wants to know how to dynamically mark the checkboxes from a listbox with checkboxes you absolutelly DON'T HAVE TO MARK THE MULTISELECT OPTION of...
  9. feliciano

    Dynamically check a multiselect listbox with checkboxes

    Hi, I'm trying to dynamically set the options of a multiselect listbox using checkboxes. If the listbox variable is LIST then I use the Set Variable LIST to the options I want lets say ABC (I'm using return letters option). When I test the script the items I selected in the set variable are...
  10. feliciano

    Amount of file's size of a component

    Hi, I have a list box component for installing files if the user want them. But the number and kind of files to install depends on a variable. Example: If COMPONENTX CONTAINS "A" If VARIABLE EQUALS "X" Install File FILE1 else Install File FILE2 end end the...

Part and Inventory Search

Back
Top