Search

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

Matching Posts

  • Re: MS reporting tool bug..no idea whats going on

    Hiya, Not sure about the function ValidateReportSecurity. Is this one that you are writing? The error looks the same as in this link http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/f04697bd-41a1-4326-a5e2-010cdeccd921 . Have a read, the solution was to change the handlers to public. Cheers Craig
    Posted to SQL Server Reporting Services (Forum) by Jorus on 10/19/2009
  • Re: save as .eml

    If you do not have the methods in 1.1, then I would look at writing my own code to create the eml files. The files are plan text files. I would fire up a framework 2.0 or use Outlook Express to create a few example files. The just create some code to match the output. The format of an EML file is: From: To: Subject: Date: MIME-Version: 1.0 Content-Type: text/html Charset-"ISO-8859-1" Content-Transfer-Encoding: Quoted-printable X-MimeOLE: Produced By MIcrosoft MimeOLE V6.00.2900.5579 Then
    Posted to Getting Started (Forum) by Jorus on 12/14/2008
  • Re: Windows authenication and owner of the record

    Hiya, I would look at storing the most unique value, is AD this would be the SID. You could also use the login or legacy DN value. As for getting the email address from AD, you need to use the DirectorySearcher methods in .net. Here is the MSDN example http://msdn.microsoft.com/en-us/library/w4y82e8a(VS.71).aspx : System.DirectoryServices.DirectoryEntry entry = new System.DirectoryServices.DirectoryEntry( LDAP://Path ); System.DirectoryServices.DirectorySearcher mySearcher = new System.DirectoryServices
    Posted to Active Directory and LDAP (Forum) by Jorus on 12/14/2008
  • Re: save as .eml

    Hiya, EML message are plan text emails, containing a header and body. You can use the SMTP client namespace and the mailmessage namespace to create them for you. Check out the MSDN links to create the SMTP and MailMessage. System.Net.Mail http://msdn.microsoft.com/en-au/library/system.net.mail(VS.80).aspx MailMessage http://msdn.microsoft.com/en-au/library/system.net.mail.mailmessage(VS.80).aspx Once created you can use the SmtpDeliveryMethod to output to a directory http://msdn.microsoft.com/en
    Posted to Getting Started (Forum) by Jorus on 12/14/2008
  • Re: Invalid postback or callback argument

    Hiya, If the error has happened only once and the site is under heavy usage. Then i would guess that you may have had bad data to a field. That is a user may have enter a letter in a number field or something like that. If you code is not logging what people are doing then it maybe hard to fine the answer. You could look at the place where yours may enter data, confirm it's the correct type and valid. You could also look at setting up a logging function in you code. Then when you enable logging
    Posted to Web Forms (Forum) by Jorus on 12/9/2008
  • Re: Does this Error Message Look Familiar

    Hi Mike, It looks like you are missing a function for MVC. This method is being reported as missing 'System.String System.Web.Mvc.HtmlHelper.ActionLink'. Is this running on your development server or a web server(hosting etc)? I would suggested you compare your dev enviroment with production. Check the IIS settig, web.config, framework settings. You could try building a simple ASP.NET MVC control to test that it is working correctly. Cheers Jorus
    Posted to Configuration and Deployment (Forum) by Jorus on 12/9/2008
  • Re: web.config for password complexity

    Hiya, Check out this MSDN page; http://msdn.microsoft.com/en-us/library/system.web.security.membership.passwordstrengthregularexpression.aspx You need to setup the Membership.PasswordStrengthRegularExpression value. This will limit what people can use as a password. Cheers Jorus
    Posted to Getting Started (Forum) by Jorus on 12/9/2008
  • Re: How to control SQL Server 2005 Memory Usage

    If you have a few sqlserver.exe then you will have more then 1 instance of sql running. Check the services.msc applet. You may have sql express installed for another application. If you do have another sql instance install, then it will be configured to use unlimited ram also. This instance will need to be limited. If you have 4gb of ram then you will be using the boot.ini switches already. Check the boot.ini located in system root c:\. It will be a hidden system file. As for AWE, I don't think
  • Re: How to control SQL Server 2005 Memory Usage

    Without know what is running on the box and it's configuration. I think its safe to say no. AWE is normally used for large ram systems. Your system has been limited to 500 MB. If you server is running above 2 gb, then you need to look at the boot.ini switches for windows and possible the AWE switches. See the following KB http://support.microsoft.com/kb/274750 . Also check the SQL books online for SQL 2005. Look at the memory configuration it will provide you most of the answers. Cheers jorus
  • Re: How to control SQL Server 2005 Memory Usage

    Hiya, Limiting the memory can be good or bad. The idea is workout how much memory sql really needs. Your current configuration is letting SQL use as much as it needs. To workout how much memory, you will need to review your databases, other applications running on the server. Then run perfmon and see how much each is using. You can then limit SQL to a value. An example would b, if you run SQL, IIS and a few web services. The box may have 1gb of ram. You could start by giving SQL 50% (512mb) then
Page 1 of 20 (195 items) 1 2 3 4 5 Next > ... Last »