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: carranz
  • Content: Threads
  • Order by date
  1. carranz

    Email server connection failed

    We upgraded to Server 2007 for our email. After we upgraded, the application can't connect to server CDO.Message.1 error '80040213' The transport failed to connect to the server. Does anyone know why it will not connect. Has something changed on 2007 server? Code Const cdoSendUsingPickup =...
  2. carranz

    group radio buttons

    I want to pass radio button values to another page. <input type="radio" name="RadioGroup1" value="Proposer" id="RadioGroup1_0" /> Proposer</label> <br /> <label> <input type="radio" name="RadioGroup1" value="Initiator" id="RadioGroup1_1" />...
  3. carranz

    hyperion format values

    Im using hyperion reporting software. I have a field in my results. this field holds number values. some of the values have decimals and some don't. I would like to have the field to hold 6 places and remove the decimals and have zeros at the end. Does anyone know how to do this?
  4. carranz

    format field

    I have a field in my results. this field holds number values. some of the value have decimals and some dont. I would like to have the field to hold 6 places and remove the decimals and had zeros at the end. Does anyone know how to do this?
  5. carranz

    PL sql

    need some advise. Which client tool would good to create plsql code for batch processing. creating programs to manipulate the data?
  6. carranz

    dropdown menu

    I have a drop down menu and i have a problem. the dropdown menu works fine but for some reason there is a gap between menu click and the results from the menu. so when I move my cursor the results disappear. Any help would be appreciated here is the code from my index file for the dropdown...
  7. carranz

    Image display

    This code displays the image in IE but not in Firefox. Does anyone know why it would not show up in Firefox? thanks #masthead1 { width: 100%; min-width: 800px; position: relative; line-height: 100%; margin: 0px; padding: 0px; background-color: #d1d1d1; background-image...
  8. carranz

    html text formating when submitting email

    I have a small problem I have an email script that sends out an email. everytime I submit the script some of the fonts change or I would get different characters in the email. it never consistent. Not sure why its doing this. I'm using HTMLBody to create the message. Any help would be...
  9. carranz

    email text format Htmlbody

    I have a small problem I have an email script that sends out an email. everytime I submit the script some of the fonts change or I would get different characters in the email. it never consistent. Not sure why its doing this. I'm using HTMLBody to create the message. Any help would be...
  10. carranz

    problem with email

    i have a problem: this script seems to work fine but when I try to send email to someone outside the server accounts it stops at the .send command If I use an account that exist on the email server then it works fine. How can I get it to work for any receiving party like yahoo, hotmail, gmail...
  11. carranz

    Format my email

    I'm trying to format the body of my email. I want to create bold text for some of the text like "Full Name" "Name" and change font size or color of font. anything help would be appreciated Dim sMessage sMessage = sMessage & "Full Name:" & Request.Form("txtFull") & VbCrLf sMessage = sMessage...
  12. carranz

    SQL Injection

    I have been looking into SQL Injection. I have found a few things on the web. But I am having difficulty on how it works or how you check to see if your vulnerable. I have a login page with two textboxes and a command button. username and password is input and the button is clicked. How can...
  13. carranz

    asp

    I would like to zip up a file and encrypt it with a password. Can ASP do this? If so does anyone have a sample or can you point me into the right direction.
  14. carranz

    attache file in email

    I was wonder if someone could help me on this. I have two asp pages to do this process. I have a input box where a user will browse to a file and load it in the text box. Then that would process that file to an email process for attachment but its not working for me any help would be...
  15. carranz

    formate field

    I have a field and its data type is (number) and its field size: decimal Precision: 4 Scale: 3 decimal places: Auto value in the field example: 3.45, 1.25, 0.324, 0.5, 0.45 I want this field to be truncated and only have 2 places example of field value 34, 12, 03, 05, 04 Does anyone...
  16. carranz

    Secure webpage

    I have an application that resides on our Secure web directories. For some reason my application does not show the secure lock icon at the bottom left hand corner of the page. the url shows https but no lock. I'm using IE browser Any suggestion why its not showing the lock? thanks in advance
  17. carranz

    validate textfield

    I have this validatation code. It works but for some reason after the alert box comes up saying a field needs to be input I hit ok then the form goes through its process I want to process to stop so I can go back and input into the field any help would be appreciated <script...
  18. carranz

    session variable set to select menu

    I have a pull down menu <select name="dept" id="dept"> <option>FTP_files</option> <option>test</option> <option>test1</option> <option>test2</option> <option>test3</option> </select> I would like to create a session variable so I could pass the...
  19. carranz

    delete from directory

    I have a page that shows a list of files. I would like to select one of the files then direct me to another page so I can delete that single file here is my code for the list of files Dim folder Set folder = fso.GetFolder(Server.MapPath("/web/file1/file2/")) If folder.Size > 0 Then...
  20. carranz

    want to break a page

    I need to break a page and start a new one based on a value in column. example I have a column name cities. then I have data information on that city. So I would have one page for each city I do. So I would like that report to break and start a new page based on the city for the report any...

Part and Inventory Search

Back
Top