m brymer

Ranch Hand
+ Follow
since Jan 04, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by m brymer

so, even though the text field appears in its entirety in the url, I still need to encode it to read it into the text field on the edit form?
Hi,
I have a jsp form with a textarea field that the user can enter comments and notes into and save to a database, this all works fine. Except when a user, somewhere in their text uses a #. The form does what it is supposed to until the user clicks on the edit or delete button the text field then displays only what is to the left of the # and everything else is blank. The URL displays the text exactly as is in the database and includes the pound sign. Am I missing something here? Is there something going on with # that I am not aware of?
Thanks!
The error I am getting is "Method not yet supported"
18 years ago
Hi,
I am trying to use the beforeFirst() method but keep getting an error message. Can someone take a look at my code and tell me what I may be missing?
Thanks!
18 years ago
Hi,
Just wondering if there is any way to have <input type="file"> default or point to a specific directory on a server? If not, is there a work around?
Thanks!
Hi,
I have a child window that lets the user choose a company which on clicking submit closes the child window and populates the parent with the company name. I want to add a second field to pass to the parent window. So I concatenated the 2 fields but I need to break them up before I send them to the parent. Example: companyname;orgid I need to put the companyname in 1 field and the orgid in the 2nd field on the parent form. Is there a way that I can separate these fields by maybe a substring?
Thanks.
Hi Eric,
Thanks for taking a look at my code. Ignore the other vars the only one I am passing is the organization (I just haven't cleaned up the code yet). The problem I am having is that when I select from the list brought up by jsp(2) it populates jsp(1) with an "undefined" rather then the organization selected. I believe my problem my lie with "search" as I need to identify the object in the list???
Hi All,
I have a jsp(1) where a user populates some fields for input into a database. Before they complete this page there is a search button that when clicked brings up jsp(2) which runs a search of company names and brings back a list. I want the user to be able to click on any of the company names in the list and upon doing so the popup, jsp(2) closes and populates the jsp(1) with the name. I have been able to do this with a single text box but have been unable to do it with a list. Can someone take a look at my code and point me in the right direction? Thanks!

I was afraid you might say that...so even if I just wanted to display the name of a file saved previously ie., abc.doc it won't let me do it? I guess I will just have to display the name of the previous file on the line above. Thanks!
M.
In this case to browse a file directory and choose a file

Hi All,
Does anyone know if it is possible to populate a browse button with a value? I have tried "value=" but it doesn't seem to do anything. Thanks!
Melissa
Got It!
18 years ago
JSP
Hi All,
I am trying to insert into a database a file selected by the user via a browse button on a jsp form. My problem is that I want to scan the users choice and only save the name of the file and its extension to the database and eliminate the location, ie. \pc\somefile\someotherfile\filename.txt I don't get any errors but the log is reading my delimiter as blank rather then \ can someone look at my code snippet and tell me what I am missing? Thanks!
18 years ago
JSP