Hi Shawn .. Field vPathEFile is stored in database with value : \\xserver\document\english.doc and when it used in maintain's page, i want the user can re-path the field again. by set the type="file" the user can browse file location again if it needed, unfortunately if i put this kind of type in "input text box" the value from database can't see from the page..
how should i fix it? -----Original Message----- From: Shawn K. Hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 10:50 AM To: [email protected] Subject: RE: [ASP] Type="file" Hi Natalyne, > I have a code below to display data from database, > but why the value doesn't appear since i put > type="file" ? but if i didn't put it the data will > come, how should i fix this? > > <INPUT id="txtvPathEFile" name="txtvPathEFile" > value="<%response.write(application("vPathEFile"))%>" > type="file" size=50> What type of content is it? *Is* it a file? Is it text? Is it an image? I'm just guessing, so I don't know if this is what you're after, but try this: <INPUT id="txtvPathEFile" name="txtvPathEFile" value="<%response.write(application("vPathEFile"))%>" type="TEXT" size=50> Regards, Shawn K. Hall http://12PointDesign.com/ http://ReliableAnswers.com/ '// ======================================================== It just so happens that your friend here is only mostly dead -- 'Miracle Max', The Princess Bride --------------------------------------------------------------------- Home : http://groups.yahoo.com/group/active-server-pages --------------------------------------------------------------------- Post : [email protected] Subscribe : [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] --------------------------------------------------------------------- Yahoo! Groups Links --------------------------------------------------------------------- Home : http://groups.yahoo.com/group/active-server-pages --------------------------------------------------------------------- Post : [email protected] Subscribe : [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] --------------------------------------------------------------------- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/active-server-pages/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
