Recent content by NPUser

  1. N

    Need help with POST code

    I have following so far. How do i change the post action URL based upon dropdown selection? Method="POST", Action= & url IF (dropdown.index =1) { url = "http://somebank.com/1/post.asp" } IF (dropdown.index =2) { url = "http://somebank.com/2/post.asp" } thanks sa
  2. N

    Need help with POST code

    something similar Here is what i am trying to do.
  3. N

    Need help with POST code

    I have following code to post the variables to a online payment processing URL. Following code works great but the problem is Payment processing company want us to use two URLS - one for Credit card and other for Checks. Difference between tow URLS - besides URL a payment indicator...
  4. N

    need help with simple asp code

    I used "GET instead of "POST". And now it is happy. Thanks sa
  5. N

    need help with simple asp code

    Basic idea - pass one variable to test.asp page and have user add second variable (input form) on same page and pass that as new url to process on the same page (same page is the key). initial pass: http://localhost/test.asp?req=22 once "Submit" is clicked new post url is created like this...
  6. N

    VB condition Static value or dynamic value from the field

    How do i do this in VB? Here is my suitation, I need some guidence from VB pros. I have yes or no question if yes - then use text entered as static text in query else use a field from the table in the query. Y/N = 'Y' select 'Test01' as Exp1, a.id_num from tblTest a Y/N = 'n' select...
  7. N

    Access VB to MS SQL SP

    I figured it out. Thanks
  8. N

    Access VB to MS SQL SP

    Thanks for looking into this PDX_Man. Here is what i am trying to achieve. I have current users in Active Directory and new users in admission tables. I have the ADSI link setup to query the AD where i get the current users from. Taking admission user one at a time into consideration - i...
  9. N

    Need help with nested loop in VB

    ejstefl, Thanks for looking into this. Per your suggestion -this is what i came up with. It appears to be working. sa
  10. N

    Access VB to MS SQL SP

    With the help form a this forum member i was able to get my Access VB working. http://www.access-programmers.co.uk/forums/showthread.php?t=109875 I would really like to convert this to MS SQL SP. What is best way to approach this? I can convert recordset to cursor, but how do i deal with...
  11. N

    Need help with nested loop in VB

    This is what i came up with for middle name. It looks to be working. thanks
  12. N

    Need help with nested loop in VB

    That makes sense. I will put not to exceed limit on first name left characters to 4. I am adding about 350 users per semester. So far i experienced about 10 duplicate usernames per batch and no more than two people with same names. Sorry to be a pest. But i have one more question. I am trying...
  13. N

    Need help with nested loop in VB

    ejstefl - thank you very much. I went over that INSERT Statement almost 10 times and seems like i just overlooked it everytime. Ohh - i was ready to pull my hair out and believe me i do not have much left to pull. If you don't mind could you clearify that for me. Would not this line create new...
  14. N

    Need help with nested loop in VB

    Still in need of your help?
Back
Top Bottom