Search

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

Matching Posts

  • Re: Reusable Code

    Depending upon the design of your solution you can establish a class library project or projects to hold your business logic, data access, and common utilities. See http://msdn.microsoft.com/en-us/library/aa581779.aspx If you have a simple web site you can use the App_Code folder... Scott Mitchell has a great tutorial at http://www.asp.net/%28S%28ywiyuluxr3qb2dfva1z5lgeg%29%29/learn/data-access/
    Posted to Getting Started (Forum) by StevenSw on 11/28/2009
  • Re: difference between asp.net 2.0 and 3.5??

    2.0 - framework that shipped with VS 2005 (core) 3.0 - Core 2.0 + WCF + WPF + WF 3.5 - Core 2.0 + 3.0 + LINQ
    Posted to Getting Started (Forum) by StevenSw on 11/28/2009
  • Re: SMTP mail problem

    Are you sure the SMTP server is valid and opeartional? I just tried running diagnostics on mail.southsideac.webhosting-for-free.com and I received the following result: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 66.49.222.162:25 I would double check with your provider on this...
    Posted to Web Forms (Forum) by StevenSw on 8/16/2009
  • Re: SMTP mail problem

    No reason to snap at those who are trying to help you. So what is the value of "ex.Message" in your catch block? If you look at the true exception it will provide you the detail you need to find a fix. Have you considered using SmtpException and the StatusCode? http://msdn.microsoft.com/en-us/library/system.net.mail.smtpstatuscode.aspx
    Posted to Web Forms (Forum) by StevenSw on 8/16/2009
  • Re: Scan files for Virus before uploading the same in Oracle

    Possibly the use of an ESB and let the bus do the work for you, if you are lucky enough to have an ESB.. If not, I am not sure how your documents come in but you could have them stored in a specified location until they are scanned via a service you write interfacing with your selected anti-virus tool via a command line interface if available. see: http://forums.asp.net/p/890935/956276.aspx
    Posted to Oracle (Forum) by StevenSw on 8/16/2009
  • Re: Snippet to obtain Active Directory Path

    See: http://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentry_members(VS.80).aspx and http://msdn.microsoft.com/en-us/library/yh598w02(VS.80).aspx
    Posted to Tips & Tricks (Forum) by StevenSw on 6/26/2009
  • Re: Send Email Thru ASPX

    check out http://radicaldevelopment.net/blog/how-to-easily-send-emails-with-net/ and I have examples both in C# and VB.NET. The sample code download is in C# but you can convert it at http://www.developerfusion.com/tools/convert/csharp-to-vb/ .
    Posted to Web Forms (Forum) by StevenSw on 6/13/2009
  • Re: Declaring Variables

    You may want to consider setting properties for you variables as well. Example: private GUID sUserID ; public GUID SUserID { get { return sUserID ; } set { sUserID = Common.GetUserID(User.Identity.Name); } }
    Posted to Getting Started (Forum) by StevenSw on 6/13/2009
  • Snippet to obtain Active Directory Path

    Sumply return the path of AD when executed on a domain. public string ActiveDirectoryPath() { DirectoryEntry root = new DirectoryEntry( "LDAP: //RootDSE"); using (root) { string dnc = root.Properties[" defaultNamingContext "][0].ToString(); string server = root.Properties[" dnsHostName "][0].ToString(); string adsPath = String.Format(" LDAP: //{0}/{1}", server, dnc); return adsPath; } }
    Posted to Tips & Tricks (Forum) by StevenSw on 6/13/2009
  • Re: Store Email Template in oracle

    Sure it is, you HTML markup is simply text. Pick the datatype the best accomdates your template. Character Datatypes Data Type Syntax Oracle 9i Oracle 10g Oracle 11g Explanation (if applicable) char(size) Maximum size of 2000 bytes. Maximum size of 2000 bytes. Maximum size of 2000 bytes. Where size is the number of characters to store. Fixed-length strings. Space padded. nchar(size) Maximum size of 2000 bytes. Maximum size of 2000 bytes. Maximum size of 2000 bytes. Where size is the number of characters
    Posted to Oracle (Forum) by StevenSw on 6/13/2009
Page 1 of 28 (272 items) 1 2 3 4 5 Next > ... Last »