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 strongm 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: *

  • Users: yongbum
  • Content: Threads
  • Order by date
  1. yongbum

    Can I specify the upload filename without an inputefile control

    Hi How would I specify the file to upload to the server without an inputfile control on the form. When the user clicks the uploadBtn I want to upload file 123.dat. I'm using vb, code snipet appriciated. Thanks
  2. yongbum

    can I create a web app to run a legacy dos app.

    Hi I want to write a web app. that does the following: Client uploads a file to the server. This file is placed in a queue of files from other clients waiting to be proccessed. Each file needs to be proccessed individualy by a legacy single user dos application. After proccessing the output is...
  3. yongbum

    what do i need to copy from development to production

    hi For an asp.net project what do I need to copy from the development site to the production site apart from the dll in the bin directory
  4. yongbum

    how do I window.close after session.timeout

    Hi, I have the following in code-behind Page_Load Response.appendheader("refresh", convert.tostring(session.timeout * 60) & "; URL=Login.aspx") instead of redirecting on timeout I'd like to do window.close. How do I do this ?
  5. yongbum

    How do i get the curser to become an hourglass.

    Hi, How do I get the cuser to become an hourglass while waiting for an action to complete.
  6. yongbum

    what would cause form variables from 1 user to pass to a 2nd user

    hi I have an asp.net app. When 2 users login the login details from the 1st user appear in the 2nd user. The session.variables from the 2nd user are deleted (null) what could cause this behaviour?
  7. yongbum

    Is there an equivelent encoding for response.binarywrite

    Hi Is there an equivelent encoding (ie without any conversion) for response.binarywrite using system.text.encoding or another command that will give the save output as response.binarywrite? Thanks
  8. yongbum

    how do i use response.binarywrite or some equivelent in innerhtml

    hi, I was using Response.BinaryWrite(myByteArray)to output dynamc content. The content itself appeared OK. but the html was screwed up (first I got the response.binarywrite output then the html - <html><header><body> ect.) which caused other major problems such as overwriting my session...
  9. yongbum

    How do I add a table at run-time to an aspx form

    Hi, I have a web form and I want to dynamicaly generate the following at run time: <Table><TR> ect <PRE> text text text text </PRE> </Table> ect I think I need to use a PlaceHolder control, but I don't know how to add the above HTML tags and text. Any help (and code snippets)...
  10. yongbum

    How do I inset text into a panel using codebehind

    Hi I have a panel with a background image and I want to superimpose some text on this using codebehind, how do I do this. I've seen InnerHTML or InnerText and this seems to be what I need. What's the Panel attribute equivelent. Thanks
  11. yongbum

    Whats the quickest way to locate a record line by line or SeekOrigin

    Hi I have a large print file which contains records for about 5000 individuals, each record is about 50 lines of text. In my web app I want each person that has a record in the file to be able to retrieve it. I store the record location (currently the line no. within the file) together with...
  12. yongbum

    Can I print background image if its disabled in explorer

    Hi I need to print a background with my page (the background is the payslip and the forground is the salary details). The company I'm doing the project for has "print background images and colors" disabled in Explorer and don't want to change it. How can I print the background in this situation...
  13. yongbum

    Can I use css to scale images and text to fit on the page

    Hi I'm using css to position text on a background image and I've arrived at the perfect fit. My problem is when I print the page is truncated on the right. If I set scaling to 90% in the page setup option everything is (100%) OK. My question is can I use css to scale the whole page to 90% of...
  14. yongbum

    If i use windows.print() where do i include the css style.

    Hi I have an printer icon with onclick="window.print()". What I want to know is how to refer to the css style for the print thanks for any help remember 2 wrongs don't make a right but 3 lefts do.
  15. yongbum

    How do I create a session variable dataset from an application datase

    Hi I have an asp.net app. using an sql server database. What I want to do is create an Application Variable to contain the database - an Application Dataset. Then create a Session Variable Dataset for each user with data filtered from the Application Dataset according to the users login details...
  16. yongbum

    pca OLE file transfer hangs

    Hi, I have pca 10.5, my customers have pca 11. The pca 10.5 is the host. The pca 11 remote runs a vb app. using pca OLE routines. My problem is the 1st file transfere (from remote to host) sometimes it works sometimes it just hangs (file transfer waiting). Any ideas how I can kick start the 1st...
  17. yongbum

    How do I close the browser window after the max inactivity has expired

    Hi I have the following to redirect after max 3 minutes inavtivity: <meta http-equiv='refresh' content='180; url=Login.aspx'> Instead of 'url=Login.aspx' I'd like to close the browser window - window.close - as the aspx pages are accessed after using window.open. What is the syntax within the...
  18. yongbum

    How do I determine the user logon and how do I stop direct access

    Hi I'm writting an asp.net app. which will be included as part of the customers intranet site. The user has to logon to the customers site to gain access to my app. I have 2 questions. 1. How can I determine the logon id is it Request.ServerVariables("LOGON_USER") or is this the Windows logon...
  19. yongbum

    Web Data Administrator missing security tab

    Hi I've recentley installed MSDE and the Web Data Administrator In the WDA under Server Tools I'm missing the Security tab. I have: Databases Import Export but no Security tab. Any ideas ??
  20. yongbum

    how can I use the windows ftp utility in my vb app?

    I've been lookig for a tutorial for using ftp in a visual basic app. for simple PUT and GET. I found lots of tutorials for Winsoc and Wininet and examples apps with ftp classes and modules. Then I discovered most Windows systems have ftp built in and in a 4 line script can login to the ftp...

Part and Inventory Search

Back
Top