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: IEAN
  • Order by date
  1. IEAN

    Response.Redirect works on one computer but not another???

    Chopstik, I tested and on my machine the varClientID is passing on fine, as for my clien't machine I have to test it tomorrow. But what I am thing is, even if there is no varClientID, shouldn't my client still land on Page C and at most see error on Page C instead of stuck at Page B?
  2. IEAN

    Response.Redirect works on one computer but not another???

    Chopstik, I did passed a querystring value but I am not using session or cookies, would the querystring cause problems? response.redirect("PageC.asp?ClientID="& varClientID &"")
  3. IEAN

    Response.Redirect works on one computer but not another???

    Thank you for your responses: Chopstik Great idea, I will put them in and try it on my client's machine tomorrow and see how it goes since things work perfectly fine on all 4 machines I've tested on, just my client's machine that is giving the problems DamberMy client is using IE 6.0, Win XP...
  4. IEAN

    Response.Redirect works on one computer but not another???

    ok, the codes are quite long, so I truncated them.... Page A - A create new client form <form name="NwClient" method="post" action="../NwClient.asp"> <input type="text" name="firstname"> <input type="text" name="lastname"> <input type="text" name="address"> <input type="submit" name="submit"...
  5. IEAN

    Response.Redirect works on one computer but not another???

    The perfect scenario is the user would feel that they are going from Page A to Page C when in reality the pages are going from Page A to Page B redirect to Page C, now in my client's page, it just goes from Page A to Page B. It doesn't throw any error, it just stops at Page B. Any ideas? Please...
  6. IEAN

    Response.Redirect works on one computer but not another???

    I have an ASP page that does something then Response.Redirect to another ASP page. The response.redirect works fine on my as well as other computer in my company, but the response.redirect fails to redirect on my client's computer. Any idea why? Please advise, thanks!
  7. IEAN

    Print Style Sheet - Doesn't hide elements properly

    Hi Vragabond, do you know of a good tutorial or book that will give me some insights on what you just mentioned? Thanks!
  8. IEAN

    Print Style Sheet - Doesn't hide elements properly

    Thank you j4606, how I wish there is a simpler way to do a print version of my page. I wonder if there is any drag and drop positioning tools for CSS... Anyways, thanks again!
  9. IEAN

    Print Style Sheet - Doesn't hide elements properly

    ok, so if I have NavTop{position:absolute;top:400px;left:200px;} in my original page If I want to reposition that in my print style sheet do I just put NavTop{position:absolute;top:10px;left:10px;} or does the name has to be different?
  10. IEAN

    Print Style Sheet - Doesn't hide elements properly

    Hi Greg, Thank you for your reply, how do I use different absolute positioning? Do you mean that I need to reposition everything to shift to the left of the page on my print css? Please advise, thanks!
  11. IEAN

    Print Style Sheet - Doesn't hide elements properly

    Yes, the Divs are absolute positioned, one of the reason is because I need to use z-index. The other reason is probably because I am not really proficient in CSS(am just slowly migrating from my usual table layout to CSS). The scenario is pretty much I have a form(paper form) as a background...
  12. IEAN

    Print Style Sheet - Doesn't hide elements properly

    Hi J4606, Thank you for your reply, I have no idea why, I am sure I have display:none; instead of visibility:hidden;, my code looks something like below: <div id="NavTop"> <span class="links">links</span> </div> <div id="NavLeft"> <span class="linksleft">linksleft</span> </div> <div...
  13. IEAN

    Print Style Sheet - Doesn't hide elements properly

    Hi all, I set up a print style sheet to hide my header and side menu something like this #NavTop {display:none;} But instead of hiding my header and side menu completely, it left a white blank space where my header and side menu use to be. Its like the header and menu are still there but...
  14. IEAN

    Try to Add 3 Numeric Values but Cannot???????

    Thanks agains guys! [thumbsup2]
  15. IEAN

    Try to Add 3 Numeric Values but Cannot???????

    Hi DNG, Kaht, thank you for your reply, DNG: I tried cdbl(var1)+cdbl(var2)+cdbl(var3) and it worked! Thank you so much DNG! Kaht: I tried to run the IsNumeric function as you said and it turned out the vars returned False as nummeric, how come? In the database the datatype is of "Number" type...
  16. IEAN

    Try to Add 3 Numeric Values but Cannot???????

    I am stuck on a ridiculously simply problem. I am trying to add 3 numbers together var1+var2+var3. I MADE SURE that all 3 vars are of Numeric type, but when I add them together, it throws a "hey buddy, you are trying to add a 'string' together" type error. At best it just combines all 3...
  17. IEAN

    How to break up recordset to display first 5 at top,the rest at bottom

    Someone pleeeease help, I need this solved asap, thank you in advance for all your help!
  18. IEAN

    How to break up recordset to display first 5 at top,the rest at bottom

    Hi Chopstik, thank you for your reply, when I do a for i= 1 to 5, it displays the first 5 records just fine, but when I do a i= 6 to 30, instead of displaying records 6 to 30, it displayed records 1 to 30. Any ideas why? Please advise, thank you!
  19. IEAN

    How to break up recordset to display first 5 at top,the rest at bottom

    Hi DNG, thank you for your reply. ok, so by using the Top keyword I can get the top 5 records, the first problem is solved. Now do you have any idea as to how I can get records 6 to 30? Please advise, thanks!

Part and Inventory Search

Back
Top