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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tman24m

  1. tman24m

    classic asp to web service COM layer

    Hi all, I currently have asp pages that clients submit xml transactions to. The asp pages take the xml and validate it against a schema. Some other light validation ocurrs and the data is fed into a SQL db. I've recently developed a web service which has the same functionality as the asp...
  2. tman24m

    Button Control and Event Handler at runtime

    I'd like to be able to share with it with you. It's a secure site for Third Party Administrators (health insurance). We provide a solution where you can use a debit card to pay for doctor visits and what not with your card. Instead of dealing with the insurance company for a reimbursement, it...
  3. tman24m

    Button Control and Event Handler at runtime

    Thanks. You've been a huge help. Your site is cool. Simple, yet elegant. Very nice. Thanks again Trent
  4. tman24m

    Button Control and Event Handler at runtime

    We're getting much closer to being on the same page. 1. Page1 loads. - DONE 2. User clicks a link to Page2, with querystring - DONE 3. Page 2 needs to display all that querystring data to user, along with a button to confirm/commit that data to db. - DONE 4. User clicks that button. - DONE 5...
  5. tman24m

    Button Control and Event Handler at runtime

    1. Yes, that's working fine. 2. Yes, that's correct. 3. No idea how. Here's what I've got going on... Page 1 opens Page 2 with a querystring The Page_Load event calls PopulateTransactionDetails() within the PopulateTransactionDetails() I've got this to populate the data objReader =...
  6. tman24m

    Button Control and Event Handler at runtime

    You are on the ball today. Page1 uses cLink.Attributes.Add("onclick", "window.open('GetTransactionDetails.aspx? to open page2 with all of the data on it (page 2 is the same page I was having trouble with the button). Page2 now has the update event which needs to send data back to a stored...
  7. tman24m

    Button Control and Event Handler at runtime

    Thanks for the help Tom. I was starting to think it couldn't be done. I took what you wrote and tested it. Then added in, piece by piece, the rest of my code. It came down to the pageload and the If Not Page.IsPostBack . Once I took out the condition, it did exactly what it should do...
  8. tman24m

    Button Control and Event Handler at runtime

    if it helps, the button is causing the page to do a postback.
  9. tman24m

    Button Control and Event Handler at runtime

    right - meaning the attributes.add is clientside which i had commented out. i think i did what you're saying and it's still not working. the event never fires.
  10. tman24m

    Button Control and Event Handler at runtime

    Right. The attributes line is commented out and I have tried AddHandler btnUpdateAdj.Click, AddressOf update which is the equivalent of EventHandler in c# Here is pretty much where it's at without being commented out dim btnUpdateAdj as new Button= New Button...
  11. tman24m

    Button Control and Event Handler at runtime

    Help! I swear I've tried everything and getting nothing. I'm trying to add a button at run time but when the button is clicked all I get is a postback event. The event that I want to fire, never does. Thanks in advance....here's my code. Currently this is in the Private Sub...
  12. tman24m

    post a file to an https site

    Hey all, I'm writing a console app in vb.net that needs to upload a file to a secured website. The website has a logon page and then a couple more buttons to get you to the submit page where you upload the file. Does anyone know what the process would be for this? Here is what i've got but...
  13. tman24m

    Dynamic file name on different server

    Thanks for the quick response. I looked at BCP, but my understanding is that the table def must be exactly the same format as the txt file format. I've got some additional fields in the table that are not in the text files. Since this is a staging table, I didn't want to create another...
  14. tman24m

    Dynamic file name on different server

    Hi all, I've been scouring the internet for the last couple days trying to find an example but am not coming up with exactly what I need. I have an ftp server where clients put text delimited files, a different server than my SQL server. I've got a vb6 app that monitors the different...
  15. tman24m

    parsing error?

    Yes, we the data is validated against a schema. We are using MSXML. Is it possible that a connection interruption could cause this behavior? Thanks, tman

Part and Inventory Search

Back
Top