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

  1. dudleys

    Uploading images

    ok thanks stsuing What I was doing was loading the image using client script when the upload button was clicked so the user saw the image. Then when the button posted back it would start the upload. So I was thinking the image had already uploaded because you saw the image. Anyhow I changed...
  2. dudleys

    Uploading images

    Hi thanks for reply How do you mean. Because users will use the site and they will be uploading images while they are using the site. So it has to upload the image they select then run code when uploaded. Can you pleas explain how?
  3. dudleys

    Uploading images

    Hi, I want to upload an image to a web site. I want some asp.net server code to execute when the file is uploaded. I realise the issues here. Is there away of running code. If the user waits till the file is uploaded then clicks a link to run teh code. How do let the user know it is...
  4. dudleys

    Running javascript before postback

    Yes it can just add a onclick function to the server control like this ctl.Attributes("onclick") = "return JSFunction();" Then in javascript return true to allow postback or return false to disallow postback. MS
  5. dudleys

    displaying table cells

    Hi, I could not find a HTML forum so I am asking here. I want show and hide cells in a table. I know I can do it with server controls but I don't want to postback to the server. How can I show/hide table rows and cells using javascript? Thanks
  6. dudleys

    postback with radio button

    Hi, I have a page with some radio buttons on it. They are all have runat=server properties. I have code that runs when one of them is clicked/checked on CheckChanged. My problem is that I want to change which radio button is checked in client script, but that doesn't force a postback to the...
  7. dudleys

    merchant services

    Hi, I want to user merchant service like PayPal. I want to know how you can integrate the actual payment facility into your own web page? If you have the user has to go to there secure page then how do you link back to your page? I want to be able for the user to select a product pay for it...
  8. dudleys

    FTP Class

    Well guys I tried the wininet.dll but had problems so I just used the FTP utility in XP Just created a script file that lists the files I want to upload that I select from a file list and call it from a batch file. May sound primitive but it works great and also if you shell the batch file...
  9. dudleys

    FTP Class

    thanks guys I have realised I can call the winInet dll.
  10. dudleys

    FTP Class

    Hi, Can anyone tell if there is a class to upload files to an FTP site????? If not what would be the best way to do it please???? dudley
  11. dudleys

    List of files in folders in a treeview

    Hi, can someone guide me with this issue. I want a treeview control that lists files and folders ona drive. Must be a class for this or do I have to use the Treeview class and populate with folders my self???? Thanks
  12. dudleys

    firewall grant access

    Hi I have Mcafee Security installed. Everytime I rerun my app in VS.Net 2003 the firewall asks me to grant access. I have added the aspnet_wp.exe to its list of allowed access applications. It seems every time I recompile my app it re asks even though the aspnet_wp.exe file really isnt...
  13. dudleys

    persisting login cookie

    Hi I wonder if you can help with this problem. I am developing my ASP.NET web site with Visual Studio 2003. When run the test site on my PC and login into it with the following code FormsAuthentication.RedirectFromLoginPage(acc.UserEmail, True) the test system works fine. The login...
  14. dudleys

    setting report title at runtime

    Hi, I am using the .NET version of crysral reports. Can you tell me how to set a title for a report at runtime? What type of field do you use and can you give an example of in vb code? Thanks
  15. dudleys

    combobox in a datagrid

    Hi, Can anyone guide me too some code that ACTUALLY WORKS for inserting a combobox into a datagrid, free that is???? I have got some from a site but it does not work correctly. Thanks
  16. dudleys

    Persisting login cookie

    Hi, Lets see if you can sort this one out? I have a problem where my live web site is not persisiting the login cookie. It is working on my development PC. The live cookie seems expire when the session timeout ends. The code is the same for live and dev. Should the cookie that gets created...
  17. dudleys

    Subreports and datasets in .NET

    Hi, I have a report with 2 subreports in .NET that I want to poplulate from DataSets. The reports work fine by themselves when I bind the datasets at runtime. Problem is when they are in a report as subreports I get a login Dialog when I try to run the main report. Any ideas why? Thanks in...
  18. dudleys

    MS Access Reports on the web?

    You could use Access snapshot viewer. Create reports that are viewed the viewer then email them as attachment. But the recipient needs a copy of the viewer. Easily downloaded from MS. You of course need to import Access object library.
  19. dudleys

    tracking users movements

    NOt sure I know what you mean because a Session variable is only accessiable that user session. I want to logon as admin user and load a page that will fill a table with users logged on and the other details. Can you explain your method?
  20. dudleys

    tracking users movements

    Should have said I want to track them while they are online.

Part and Inventory Search

Back
Top