User Profile

Collapse

Profile Sidebar

Collapse
tejaswini
tejaswini
Last Activity: Aug 10 '06, 10:52 AM
Joined: Jul 28 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • tejaswini
    replied to ASP CDOSYS email
    hi,
    ya the code page is same
    thanks
    See more | Go to post

    Leave a comment:


  • tejaswini
    replied to CDO. Message Problems
    hi there,
    you need to use the configuaration object for ur settings of smtp server and the port.

    something like ths

    Code:
     
    Set objCDOSYSCon = Server.CreateObject ("CDO.Configuration") 
    		objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "127.0.0.1" 
    		objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport")
    ...
    See more | Go to post
    Last edited by Niheel; Aug 22 '06, 05:22 AM.

    Leave a comment:


  • hi

    why dont you get the last inserted id using theSQl last@@Identity.
    See more | Go to post

    Leave a comment:


  • tejaswini
    replied to Image Resizing..Help!
    in PHP
    hi,
    hope the following code works
    <?php
    // File and new size
    $filename = 'test.jpg';
    $percent = 0.5;

    // Content type
    header('Content-type: image/jpeg');

    // Get new sizes
    list($width, $height) = getimagesize($f ilename);
    $newwidth = $width * $percent;
    $newheight = $height * $percent;

    // Load
    $thumb = imagecreatetrue color($newwidth ,...
    See more | Go to post

    Leave a comment:


  • tejaswini
    replied to hi i need display dropdown list
    hi,
    You need to use with javascript with an onchange event.The onchange event redirects to the asp page where it accepts the textbox values and then displays the result in the combo box or a dropdown.
    See more | Go to post

    Leave a comment:


  • tejaswini
    replied to Update Without Set
    You cannot have update without SET its compulsory
    See more | Go to post

    Leave a comment:


  • tejaswini
    replied to send mail from ASP-any ideas??
    Set objCDOSYSCon = Server.CreateOb ject ("CDO.Configura tion")
    objCDOSYSCon.Fi elds ("http://schemas.microso ft.com/cdo/configuration/smtpserver") = "127.0.0.1"
    objCDOSYSCon.Fi elds("http://schemas.microso ft.com/cdo/configuration/smtpserverport" ) = 25
    objCDOSYSCon.Fi elds("http://schemas.microso ft.com/cdo/configuration/sendusing") = 2
    objCDOSYSCon.Fi elds.Update...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...