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 wOOdy-Soft 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: dudleys
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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...
  4. 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...
  5. 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
  6. 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
  7. 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...
  8. 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...
  9. 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
  10. 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
  11. 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...
  12. 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...
  13. dudleys

    tracking users movements

    Hi, I want to be able to track the movements of users on my site. I of course would not do with heavy traffic. I thought of using the Cache object and filling it with an object that has the username,time,web page executed. Is this a wise thing to do.?? Could I create the object in the Cache...
  14. dudleys

    developing a web service on a web site

    Hi, Can anyone give me some help with this issue? I have a ASP.NET web site with an access database. I want to be able to remotely add data to the website from a windows form application. I thought of creating a web service that I pass a dataset to which then updates the DB. Do all I need...
  15. dudleys

    listview does not show any items

    I have a listview and it is not showing any items after I populate it. I set the View prop to Details. I set the 2 columns in design time columns property. This the code If objRdr.HasRows Then Do While objRdr.Read lvItem = New...
  16. dudleys

    combobox in a panel control

    Hi, I have a panel with some controls, namely a combobox. I want to find the selectedIndex property of the combo. But I can't seem to work it out. This is the code I have Public Function GetSelectedIndex(ByVal pnl As Panel, ByVal ctlName As String) As Integer Dim ctl As Control...
  17. dudleys

    how to set img to blank

    Hi, Can anyone tell me how to set an img to blank ie so you can see the alt property when viewing the page. I have tried img1.src = null Thanks in advance
  18. dudleys

    sorting arraylist of structures

    Hi, I have an ArrayList of structures and I want to sort the array on different members of the structure so that I can give a rank each element of the array. So I thought I would sort it for each member in turn add add a rank member to the structure for each member i want to sort Confusing I...

Part and Inventory Search

Back
Top