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 SkipVought 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. rhapsody

    jump to VB.NET with out VB knowledge?

    HI! I'd like to know if there would be any problem if I could just start learning VB.Net eventhough I'm not really a Visual Basic programmer? Actually I'm just familiar with the VB environment but I haven't developed a complete application system in VB.Well, my background is really into web...
  2. rhapsody

    Need help with an if statement

    I'm not sure if I understood ur stement very well...but here goes... dim strQuery ' variable to place the query string ... if strQuery <> &quot;&quot; then ...'ur asp statement end if
  3. rhapsody

    null dates inserted into db??

    im not sure if u just didn't include it in your code but in the part where u check for the required fields....u didn't put any value in your hidden field which i assume is the &quot;hidReferralDate&quot; this code should be included... if(strReferralDate = &quot;&quot;) then strErrorMessage...
  4. rhapsody

    Give focus using VBS

    try this.. window.showmodaldialog &quot;popupwin.asp&quot;,,&quot;dialogWidth=30;dialogHeight=15;center=1;tool=0;status=0;help=0&quot; though make sure that the popupwin.asp doesn't submit to to itself because it will only result to openning another window.
  5. rhapsody

    What the best site to get reference

    http://www.w3schools.com/vbscript/vbscript_ref_functions.asp
  6. rhapsody

    &quot;ASP is not supported on Windows Millennium Edition&quot;

    In creating database-driven web applications you need to install a web server on your PC. You may choose from Personal Web Server (PWS) or Internet Information Server (IIS).These web server also serves as ASP application server to run your ASP applications. The problem is that I think Windows...
  7. rhapsody

    I love ASP.NET

    thanks a lot! now I'm having ideas on how to start studying. Though I'm quite confused on what book should I invest to study ASP.NET and VB.NET...should I go for O'Reilly, Wrox or the ASP.NET for dummies? and one more thing... can I use Personal Web Server instead of IIS to run my .aspx?
  8. rhapsody

    I love ASP.NET

    Hello ASP.Net lovers! since you are all here (i guess) I would like to ask your advice...I'm an application programmer using classic ASP/VBscripts for almost a year and I wanted to upgrade my knowledge in web programming...I wanted to learn and practice my programming skills using .NET...
  9. rhapsody

    How to open .doc (MS WORD) file in the browser?

    Hi! :) I'd like to know how to open a MS word document in my browser using ASP. I don't want the File Download Window to show up anymore. My web site is running in PWS (personal web server) but latter on will run in IIS.
  10. rhapsody

    menu that works with frames/frameset

    hello! i'd like to make my menu drop down.Unfortunately the free codes (javascript) that I've got doesn't work with frames,the drop down list is cut from where the frames are separated. Do u know any sites where I can get some codes that works with frames?thanks!
  11. rhapsody

    Convert HTML to PDF

    Do you know any PDF convertion source code that can be incorporated in an ASP/VB Script code? Or is it possible to generate PDF of a particular web page? thanks!
  12. rhapsody

    ASP programming

    another option is to write a subroutine in your client side script <script language=&quot;VBSCRIPT&quot;> sub button1_onclick() form1.action = &quot;NewPage.asp&quot; form1.submit() end sub </script> this subroutine is triggered when u click the button named button1 with in the form tag...
  13. rhapsody

    How to upload file from client to server?

    I'm tryinh to upload a file...pretty much like in email attachment. I'm using ASP and VBScript File System Object...the problem is when i check if the file to be upload exist in the client directory using fileExist,the file doesn't seem to exist.I think the problem is that the program doesn't...
  14. rhapsody

    How to target a frame within a frameset in the server-side script?

    well the scenario is like this... in my 3rd frame, the user is tasked to login.I check the validity of the users login in the server-side script using vbscript/asp.the checking happens when the page is submitted.when login is valid,I need to change the source file of frame2. I only know how to...
  15. rhapsody

    How to target a frame within a frameset in the server-side script?

    Please help! I'm using a frameset with 3 parts/frames inside.When an action is made in frame3 I need to change the frame source in frame 2.How can i do this using the server-side script?
  16. rhapsody

    Why does the anchor tag not working in IE version 6?

    THANKS A LOT!!! :) @Targol! Great help!!!
  17. rhapsody

    Why does the anchor tag not working in IE version 6?

    ok...the codes goes like this... page name &quot;project.asp&quot; <html> <table...> <tr> <a name=&quot;5&quot;></a> <td..> </td> </tr> </table...> </html> when I refresh the page i use the server side script(vbScript) <% response.redirect &quot;project.asp#5&quot; %>
  18. rhapsody

    Why does the anchor tag not working in IE version 6?

    I'm using an anchor tag to create a link to a portion of a page everytime the page refreshes.The anchor works on IE ver.5 but when i run my program in IE ver. 6 it doesn't work!Please help...tnx

Part and Inventory Search

Back
Top