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. derrickorama

    Radio Buttons Null When Submitted

    On a contact form for a client of mine, there are radio selections that do not have a default selection. When the form is submitted, without selecting one, the variable is not passed to the ASP page... it is ignored. Is there a way to get the radio input, even if it is null? Right now I'm...
  2. derrickorama

    Removing Invalid Tags via ASP

    Yes, that is pretty much exactly how it's set up, the only problem is that anything inside of the <Content> tags can be edited by any one of our clients. So if they log in and delete everything, the closing comment will be gone and we'll be left with: <html> <head> *head tags and info*...
  3. derrickorama

    Removing Invalid Tags via ASP

    The code would look something like this: <html> <head> *head tags and info* </head> <body> <Content> *content* </Content> </body> </html> I could do a search and replace if I loaded the page into a variable or something. Is there an efficient way of loading the page, but excluding certain...
  4. derrickorama

    Removing Invalid Tags via ASP

    Yea, my friend was telling me to try JavaScript. I was more or less looking for a server-side route to solving the issue. I've posted this on the ASP forum now. We'll see how it goes. Thanks though!
  5. derrickorama

    Removing Invalid Tags via ASP

    Does anybody know of a way to load an ASP page whilst removing certain tags before it's fully loaded? Example: We use certain tags that are invalid such as <Content> and such (for a content management application) and it's difficult to validate a page sometimes due to these invalid tags. They...
  6. derrickorama

    Removing Invalid Tags via ASP

    I suppose it would be ASP in this case.
  7. derrickorama

    Removing Invalid Tags via ASP

    Does anybody know of a way to load an ASP page whilst removing certain tags before it's fully loaded? Example: We use certain tags that are invalid such as <Content> and such (for a content management application) and it's difficult to validate a page sometimes due to these invalid tags. They...
  8. derrickorama

    Inline HTML vs CSS - Image Width

    Thanks to all. I agree with Chris Hunt's statement about the height and width being an aspect of the images content. But does anyone know whether or not defining the image's height & width in the CSS increases download times? Does the browser use the size defined in the CSS or does the...
  9. derrickorama

    Inline HTML vs CSS - Image Width

    I was wondering... I know that it's better to define the width and height of an image file in the img tag, but I was wondering if it's the same/better using CSS. I can't seem to find any resources on the Web specifically stating that CSS is better or the equivalent of the HTML attributes width...
  10. derrickorama

    Combine Network Drives to Act as One?

    I was just wondering if there were any way to "combine" network drives. I have three different network drives that lead to three different servers. I have to use references that tell me which server certain files and folders are on every time I’m working on a new task. It would be easier if...
  11. derrickorama

    Using the Citrix Connection to Map Drives Locally

    What I was wondering about is if it was possible to use a Citrix connection to access files via my local machine. I can use the Citrix ICA Client to access a distant desktop with its own mapped drives, but what I want to do is access those same mapped drives/files using my local machine. I...
  12. derrickorama

    Connect to a Mapped Drive in Citrix on Local Desktop

    I have been using Citrix in my company for some time, and I have mapped drives through Citrix. I was wondering if it is possible to use my Citrix connection (which has the mapped drives) to somehow map a network drive on my local computer to connect to a mapped drive in Citrix. I have done...
  13. derrickorama

    Wireless Won't &quot;Finish&quot; Renewing IP

    My wireless card built-in to my laptop won't finish renewing the IP address! I can connect and everything, but it keeps saying that it's working on renewing my IP. But if I refresh the Network Connections folder, it says that it's connected and it all goes away. This is more of an annoyance...
  14. derrickorama

    Storing a returned value from a function.

    Apparently so!
  15. derrickorama

    Storing a returned value from a function.

    semi-colons *are
  16. derrickorama

    Storing a returned value from a function.

    Ha! Yea, makes sense. And the semi-colons is part of a habit I got into whilst programming PHP. Semi colons after everything!!!;
  17. derrickorama

    Storing a returned value from a function.

    lol... In a way yes. I got into the habit of programming my Web pages for Firefox to begin with, and then I try them on Internet Explorer and things don't work. So then I have to tweak my code so that Internet Explorer is happy. I just find that many things that work for Firefox won't work...
  18. derrickorama

    Storing a returned value from a function.

    Nevermind!!!! I figured it out shortly after posting this. In Firefox it's okay to store a value with the same name as an ID on the page. My INPUT tag had an ID: "newval" and my variable was also called "newval". Firefox was fine with that, but IE didn't like it! Ugh... I gotta stop using...
  19. derrickorama

    Storing a returned value from a function.

    I'm trying to do something simple that works in Firefox, but apparently not IE. I'm just trying to store the returned value from a function into a variable. I made a simple example for myself to test. It still didn't work, so I was wondering what was wrong, and how to accomplish this task if...
  20. derrickorama

    Calling procedure from Web application, won't work.

    I think I found my problem... Statements that return a result set cannot be used within a stored function. This includes SELECT statements that do not use INTO to fetch column values into variables, SHOW statements, and other statements such as EXPLAIN. For statements that can be determined...

Part and Inventory Search

Back
Top