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 Mike Lewis 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. Pandyon

    form values not clearing.

    That won't really work. The page load by default only includes a list of existing members in a dropdown list, with an Edit button and a New button. Choosing either a member from the list and clicking Edit, or just clicking New makes the form appear. So if I redirect, then it takes me back...
  2. Pandyon

    form values not clearing.

    I have a .NET form using C# that I use for both editing a table and adding a new record. When editing, it grabs data from a record and fills the form text boxes with the info, and shows an "Edit" button. Click on "Edit" and it works fine. At the top, I have a "New" button. This is supposed...
  3. Pandyon

    Accessing javascript class change on the server side (C#)

    are you saying that I should be able to get the class information in the input button (if it is not asp:button) using Request.Form ? I tried that but didn't work. I'll look at that jqueryUI button. Thanks,
  4. Pandyon

    Accessing javascript class change on the server side (C#)

    So I have looked for days for a solution online to this, and I've tried different ways of doing this, but can't seem to find a complete solution. So please HELP! I have a form that a user is filling out online. At one point in the form, they select keywords they want to associate with their...
  5. Pandyon

    Join problems: I'm missing something simple I think.

    Nope. Tried that. Changed joins to Left Outer Joins, and tried all sorts of combinations, but still not getting the right number of records.
  6. Pandyon

    Join problems: I'm missing something simple I think.

    I don't write SQL that much, and usually my queries are pretty straight forward. I'm having a problem (I think it's join-related) where I want all the records from one table (A), but then if a related table (B) has a piece of data to add, I want it, but if not, I want it to return a blank or...
  7. Pandyon

    combining a List with a Select statement..how?

    I've got a convoluted Select statement gathering lots of info from a variety of tables. Abbreviated, I've written something like this: Select master_customer_id, name, title, company, user FROM cus_table WHERE name LIKE 'A%' On a separate piece of code, I'm using this nice little snippet...
  8. Pandyon

    keeping login on my site

    I have a login form (enter.cfm) that submits to a page that checks the login (check_login.cfm). Some people have written their own page code on their own site, so it goes to my page (check_login.cfm) that checks the login, without them having to go to my own login page. Is there a way I can...
  9. Pandyon

    Passing Session variables between coldfusion & ASP

    I searched around on some forums for this, and everyone seems to suggest using a database as the middleman. But is there a way to pass a session variable established in coldfusion to ASP so it sees it too? My website runs on Coldfusion, but we are revamping some things and our new...
  10. Pandyon

    too much traffic

    Thanks for the replies. The site is hosted by Network Solutions. They tell me it was just the bandwidth, and using a shared packaged. They're telling me to upgrade to dedicated or VPS for more access. I kept thinking it was the code, since it is much more complicated this year. I still...
  11. Pandyon

    too much traffic

    Searched around but couldn't find any specific help on this. I run a website that is in ColdFusion. It's a site that gives away free tickets. We did this last year and had no problems when we went live, even with a huge hit at the beginning. This year, the code is much more complicated...
  12. Pandyon

    Which DB Platform to use??

    Thanks for all the suggestions...I guess I'm even a bit more confused than before. However, the first response had the easiest solution for me: Web-Based. Since my prior experience is mostly Access Databases running off IIS web servers with ASP coding, this would definitely make the most...
  13. Pandyon

    Which DB Platform to use??

    Okay, I've been out of the DB design game for about a year and a half. Previously, I did some intermediate design in Microsoft Access 2003, some good VB scripting with that, and a lot of ASP scripting (the DBs run off websites for the most part). I'm in the pre-design phases of a new...
  14. Pandyon

    Yahoo Stock Quote properties.

    Does anyone know what the properties are for downloading details about a yahoo stock quote are? I have the basic string: http://finance.yahoo.com/d/quotes.csv?s=ibm&f=sl1d1t1c1ohgv But I know there are many more properties I can add to get more info...I just don't know where there is a...
  15. Pandyon

    Tracking a Web Page

    About eight months ago, I THOUGHT I read some sort of programming book that spoke about grabbing the HTML code from another web page on the Internet. Basically, what I want to do is this: I want to keep track of when a page of information on another website is updated with new information...
  16. Pandyon

    ASPEmail Attachment Path problem

    Found the answer to my own problem next day. To get the path right, I had to add the following. strPath = Server.MapPath(".") then Mail.AddAttachment strPath & "\file1.doc" That did it. Mark
  17. Pandyon

    ASPEmail Attachment Path problem

    I'm trying to program a page to grab a file from my website, attach it and send the email. The problem is it's a hosted site. Does the ASPEmail Attachment method need a hard-coded path like "F:/document/Doc1.doc"? or can I use "//website/document/doc1.doc"...I'm at a loss...
  18. Pandyon

    New Apostrophe Dilemma

    I've seen all these great posts on getting rid of the apostrophe before it goes into the database... But what if I can't do that. What if there are already apostrophes in Names in fields of my database (access)? For example, the last name "O'Connor" is already in my database many...
  19. Pandyon

    Changing Mail Properties?

    I've got some VBA work that sends emails from Word and Access, but I'm trying to assign certain variables that I can't seem to "find" in the Object Model...if someone could help, please. I want to assign information to whatever properties I can so that when the person receives the...
  20. Pandyon

    Outlook Object Model Where

    Somewhere...oh somewhere, I saw the Outlook Object Model for Access97 and Outlook98...or maybe it was 2000. But it's what I'm using..with all the commands. Now I can't find it.. Anybody know where it is? It was such a great webpage, with all the commands. Please help...

Part and Inventory Search

Back
Top