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 Shaun E 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. ciberperson

    display radio button selection from database

    I have a form of text boxes and radio button lists in C#. The user submits and all is saved to the SQLServer database. But the user can return and make changes to this form. When the user returns I want to retrieve his previously entered values and display them. I created a DataReader to...
  2. ciberperson

    url encode not working for @ in email

    I am trying to pass several variables from a jsp page to a aspx page. This works fine using a link, a redirect, etc as long as my variable does not have @ symbol. I use Server.UrlEncode () on the string - it still does not work. I use a Replace on the string (replace @ with %40 - it still...
  3. ciberperson

    Get 404 when passing query string with @ symbol

    I am trying to pass 3 parameters in a query string. One of those parameters is an email address. I Server.UrlEncode each parameter but then I get a PNF (404 error). If I take the @ symbol out of the email, all works fine. Using c# on .NET 3.5. Here's my code behind: protected void...
  4. ciberperson

    insert into Db AND fileupload to folder

    Has anyone successfully built an aspx form that will upload a file to the folder structure (asp:fileupload) and at the same insert form fields (like a friendly title of the photo to be uploaded) into a DB? I am not having any success trying to make this work. Any help out there?
  5. ciberperson

    class may be cached; changes are not displayed

    Has anyone ever seen this before? I have a form.jsp which calls a sendmail.jsp which calls my class- send(). The first time I ran the form I found a change I wanted to make inthe class file. Made the changed, recompiled and then ran the form again. Big surprise - I see the same error (typo...
  6. ciberperson

    compare 2 arrays to create a third array

    I have been struggling with this for several days and have tried 3 different methods but to no avail. Perhaps someone can steer me in the right direction. I have a form with a checklist of software; the users selects what they do not want. I want to find out what is left when you substract the...
  7. ciberperson

    Clear part of the page when users search again

    I have a page with a short form containing 2 input boxes. The user completes the boxes and hits FIND and the results are displayed in the lower half of the screen (outside the form tags). What they want is to enter new data in those 2 fields (overwrite the first input) and have the bottom of...
  8. ciberperson

    convert array to multi-dimensional array

    I have an array which was created by reading in lines from my FileSystemObject. Each line has 8 fields and I want to create a 2 dimensional array from the original array so that I can select information based on a column. Here's what I have: While not theFile.AtEndOfStream i=i+1 arrLines(i)...
  9. ciberperson

    oracle 8.1.7 upgrade hoses my COM

    We just went from Oracle 8.1.6 to 8.1.7 and it appears the update and insert records will not work in my com objects. The Select statements still work so it must be some legacy code snippet that 8.1.7 is not going to tolerate. Anyone else have this problem. The COM connects using ODBC. WE are...
  10. ciberperson

    dropdown select passes value to SQL query

    I have a page written in VBscript which allows a user to select from a dropdown, which passes a value to a SQL query. The results of the query are then displayed to the user. My customer does not like the GO button and wants an onChange or onClick event. Now I have to convert this part of the...
  11. ciberperson

    4K char limit in SQL ???

    I am inserting new records into my oracle db using an asp form. One field is intended to exceed 4,000 characters so the field was defined as a 'long' in Oracle. Problem is that my SQL bombs and we have determined that anything over 4K does not update the database. Using SQL+, we get the same...
  12. ciberperson

    how to drill down on a table for more info

    My user will enter a partnumber on a form (page 1) and this calls an asp file which opens the database and returns a record set in table form (page 2). This part works fine. Now I want to let the user click on a hyperlink within the returned data and "drill down" for more info on the...
  13. ciberperson

    changing date format to yymmdd

    I would like to convert my date to a format of yymmdd without separators in order to use as a string in a file name. How do I convert the system date to this format?

Part and Inventory Search

Back
Top