Password Recovery - Out of the box

Discussion in 'ASP.NET 2.0' started by jfs1967, Jun 9, 2006.

  1. I am trying to use the Password Recovery control right out of the box, but I get the error


    cannot get iis pickup directory


    Any advice how to fix this would be really appreciated.


    Here are the settings in web.config


    <system.net>


    <mailSettings>


    <smtp deliveryMethod="PickupDirectoryFromIis" from="[email protected]">


    <network host="localhost" port="25" defaultCredentials="true"/>


    </smtp>


    </mailSettings>


    </system.net>
     
  2. You should be able to change this..
    deliveryMethod="PickupDirectoryFromIis"


    To this...
    deliveryMethod="network"


    to get it to work.





    I wonder if there's some sort of setting we have to set to get PickupDirectoryFromIis working.



    Joel Thoms
    DiscountASP.NET
    http://www.DiscountASP.NET
     
  3. Sweet! That did the trick.


    Thank you.
     

Share This Page