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 Mike Lewis 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: chinnababu
  • Order by date
  1. chinnababu

    Help to create HTML Style Invoice

    Here you go, I am giving all the code, from here you have to improve,add. As is it is working fine. from: chinnababureddy@hotmail.com -------------------------------------- <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;> <html> <head> <title>Invoice</title> </head>...
  2. chinnababu

    Create Executable Crystal Report

    You can create executable with crystal reports 7. If you do not have 7, there is a undisplayed file (*.exe) in after version 7, you can run that manully (explorer, go to that folder, click on the file), when it opens follow the options, it will create exe file.
  3. chinnababu

    Convert HTML to PDF

    I recomend crystal reports. Easy to export to any file format.
  4. chinnababu

    .txt File Import

    I posted the same question, nobody answered. I figured it by my self. If you use ASP/VBSCRIPT/FSO, if you still need an answer, I have an answer. let me know. chinnababu@mail.com
  5. chinnababu

    Send Email

    Here you go............ <a href=&quot;mailto:yourname@company.com?cc=yourboss@company.com&subject=About Your Company&body=Message Type Here.&quot;>Email</a>
  6. chinnababu

    ASP all in one page

    Try something like this.................. Hope this helps......... <html> <head> <title>Untitled</title> </head> <body> <form action=&quot;caseSelection.asp&quot; method=&quot;post&quot;> <input type=&quot;radio&quot; name=&quot;caseSelection&quot; value=&quot;ADD&quot;>Add<br> <input...
  7. chinnababu

    Redirect

    Try this........ <a href=&quot;otherFolderName/viewuser.asp&quot;>View User</a>
  8. chinnababu

    radio buttons and asp

    Try this. This form submits to it self. and save this as 'caseSelection.asp' ---------------------------------- <html> <head> <title>Untitled</title> </head> <body> <form action=&quot;caseSelection.asp&quot; method=&quot;post&quot;> <input type=&quot;radio&quot; name=&quot;caseSelection&quot...
  9. chinnababu

    How do I run my ASP scripts

    I tried your code, cut and paste, it worked fine. I do not see any problem. I recommend two things, make sure your pws is running and you save your file with extension 'asp' and run it. This should help. I ran it the following way. c:\inetpub\wwwroot\yourfile.asp or http://default/yourfile.asp
  10. chinnababu

    Avoid Flie Name Browsing

    On top of one children page (not home page), try the following code, if this works add the same code to all children pages. <%If session(&quot;validuser&quot;)<>&quot;yes&quot; then Response.Redirect &quot;yourhomepage.asp&quot; or &quot;yourloginpage.asp&quot; End If %>

Part and Inventory Search

Back
Top