Search

You searched for the word(s): userid:715957

Matching Posts

  • I' m looking for small projects/ tasks

    My CV: www.victorantos.com/resume.aspx I am from Rep. of Moldova (Europe). Now I am working as a freelancer in Romania. My Experience with .NET = 3 years Currently I am learning an ecommers starter kit. I' d love to launch an ecommerce site. If you are interested in online commerce maybe I can help you. Contact me at: contact@victorantos.com or just do a search on google by keyword "freelancer asp.net romania" and you'll get to my site ;)
    Posted to Jobs (Forum) by victorantus on 12/6/2007
  • how do I give access, to an "Operator" role, only to one page from an Admin folder?

    I have an Admin folder which contains a web.config file: <authorization> <allow roles="Admin"/> <deny users="*"/>... how do I give access to one page, commonPage.aspx, for role "Operator" ? I tried to add the following lines to web.config file from Admin folder, but It does not work: <authorization> <allow roles="Admin"/> <deny users="*"/>... <location path="~/Admin/commonPage.aspx" allowOverride="false"
    Posted to Security (Forum) by victorantus on 9/25/2007
  • how to unselect a treenode ?

    how to unselect a treenode ? SelectedValue, SelectedNode properties are readonly, To select a node I do myTreeNode.Select(), but how do I deselect/unselect a node? thanks
    Posted to Getting Started (Forum) by victorantus on 9/25/2007
  • how to send mail from exchange server

    Hi! How do I configure web.config to send mail from an exchange server? This does not work: < system.net > < mailSettings > < smtp > < network host = " exchangeServ1 " username = user1@mydomain.com password = "pass " / > </ smtp > </ mailSettings > </ system.net > update: solved, username needs to be userName
    Posted to Getting Started (Forum) by victorantus on 8/17/2007
  • Re: Email not working with an SMTP server that has SSL?

    Hi! How do I enable Ssl in web.config. I tried enableSsl = " true " but it does not work: < smtp > < network host = " smtp.gmail.com " enableSsl = " true " password = "bla bla " port = " 587 " userName = "victorantos @gmail.com " /> </ smtp >
    Posted to Classifieds Starter Kit (Forum) by victorantus on 7/16/2007
  • Re: looking for developer!

    Hi! I am from Romania. I am interested in this task. See my resume: http://victorantos.com/resume.aspx mail me at: victorantos@gmail.com
    Posted to Jobs (Forum) by victorantus on 6/25/2007
  • Re: Does CSK offer multi-lingual support?

    CSK = Commerce Starter Kit ! http://www.commercestarterkit.org/ not http://communityserver.org
    Posted to Commerce Starter Kit (Forum) by victorantus on 6/12/2007
  • Re: Theme Change

    From web.config I suppose. You need to have the new theme in Theme folder of your app.
    Posted to Commerce Starter Kit (Forum) by victorantus on 6/12/2007
  • Re: SMTP Mail ?

    Found solution! < asp : PasswordRecovery ID ="PasswordRecovery1" runat ="server" OnSendingMail ="PasswordRecovery1_SendingMail"> protected void PasswordRecovery1_SendingMail( object sender, MailMessageEventArgs e) { SmtpClient smtpClient = new SmtpClient (); smtpClient.EnableSsl = true ; smtpClient.Send(e.Message); e.Cancel = true ; } http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=163226&SiteID=1
    Posted to Web Forms (Forum) by victorantus on 6/9/2007
  • Re: How Do I: Enable SSL for PasswordRecovery Email

    Found solution! < asp : PasswordRecovery ID ="PasswordRecovery1" runat ="server" OnSendingMail ="PasswordRecovery1_SendingMail"> protected void PasswordRecovery1_SendingMail( object sender, MailMessageEventArgs e) { SmtpClient smtpClient = new SmtpClient (); smtpClient.EnableSsl = true ; smtpClient.Send(e.Message); e.Cancel = true ; } http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=163226&SiteID=1
    Posted to Security (Forum) by victorantus on 6/9/2007
Page 1 of 2 (20 items) 1 2 Next >