User SharePoint Newbie - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:44:30Z http://stackoverflow.com/feeds/user/21586 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1680076/iis7-and-clientcaching-with-asp-net-mvc 0 IIS7 and clientCaching with ASP.Net MVC SharePoint Newbie 2009-11-05T11:53:29Z 2009-12-06T18:52:29Z <p>Hi,</p> <p>Is it possible to declaratively set clientCaching for an Action using the web.config in IIS7.<br /> We need to set an expiry value of 1 day for our Home/Index Action. As of now we are doing this using a filter attribute. Is it possible to accomplish the same declaratively?<br /> We are able to do it for static content, but not for Action Methods through the Location and system.webServersections in the web.config.</p> <p><code> [location path="Content"]<br /> [system.web]<br /> [authorization]<br /> [allow users="*"/]<br /> [/authorization]<br /> [/system.web]<br /> [system.webServer]<br /> [staticContent]<br /> [clientCache httpExpires="Sat, 28 Nov 2009 09:00:00 GMT" cacheControlMode="UseExpires" /]<br /> [/staticContent]<br /> [/system.webServer]<br /> [/location]<br /> </code></p> http://stackoverflow.com/questions/1797231/can-someone-explain-this-article-about-enforcing-race-safety-in-scala 1 Can someone explain this article about enforcing race safety in Scala. SharePoint Newbie 2009-11-25T14:26:10Z 2009-11-25T18:26:54Z <p><a href="http://www.infoq.com/news/2009/07/scala-actors-race-safe-system" rel="nofollow">http://www.infoq.com/news/2009/07/scala-actors-race-safe-system</a></p> http://stackoverflow.com/questions/1797119/running-nunit-tests-in-parallell-using-nant 0 Running NUnit Tests in parallell using NANT SharePoint Newbie 2009-11-25T14:05:55Z 2009-11-25T14:05:55Z <p>Hi,</p> <p>We have different categories of tests under various assemblies. What is the best possible way to run them in parallel? I am aware of a task in ant, is there any such task in NANT?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1782089/linq-projection/1782141#1782141 1 Answer by SharePoint Newbie for Linq Projection SharePoint Newbie 2009-11-23T09:53:40Z 2009-11-23T09:53:40Z <p><code> customers .Select(c => new Customer { Orders = c.Orders.Where(o => o.OrderDate > DateTime.Now)} ); </code></p> http://stackoverflow.com/questions/591433/sharepoint-throwing-exception-after-impersonation 1 SharePoint, throwing Exception after impersonation. SharePoint Newbie 2009-02-26T16:56:27Z 2009-11-19T08:00:15Z <p>Hi, <br /> We are impersonating a SharePoint User and trying to acces a list item.</p> <pre><code>using (SPSite site = new SPSite(BAH.SN.Properties.Settings.Default.RootSiteUrl, new SPUserToken(currentUser.ImpersonationToken))) { using (SPWeb web = site.RootWeb) { SPList list = web.GetList(BAH.SN.Properties.Settings.Default.CommunitiesListPath); if (list != null) { SPQuery query = CAMLHelper.GetSPQueryForCommunityListByOwner(user.UserName); SPListItemCollection items = list.GetItems(query); if (items != null &amp;&amp; items.Count &gt; 0) { // Read here } } } } </code></pre> <p>We are able to get a handle on the list, but as soon as we try to access any property of SPListItemCollection "items", we get a COM exception: 532459699.</p> <p>We are running FBA and the user calling this code is an anonymous user.</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1628818/what-status-code-does-asp-net-mvc-set-when-there-is-a-session-timeout 0 What status code does ASP.Net (MVC) set when there is a session timeout? SharePoint Newbie 2009-10-27T04:42:55Z 2009-11-15T15:00:04Z <p>Hi,</p> <p>We need to redirect the user to a session timed out page whenever the ASP.Net session times out. We fetch most of our content through AJAX calls and the user never navigates away from the default page.<br /> Is there any way to detect a session timeout on client side (in Javascript) without making any changes to the server-side code. Can we check the HTTP Status code?<br /></p> <p>Kind regards,</p> http://stackoverflow.com/questions/388188/where-are-these-classes-coming-from -1 Where are these classes coming from? SharePoint Newbie 2008-12-23T04:38:59Z 2009-11-06T15:00:03Z <p>Hi, We find these classes have automatically added to our project:</p> <ul> <li>Field </li> <li>Person</li> <li>Reviewer</li> </ul> <p>We are using VSTS 2008 and TFS. Any idea how to get rid of these classes? (They shown up in Reflector / FxCop, no source files for these)</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1673894/response-expires-not-interpreted-correctly-in-ie-is-this-fixed-with-ie-8 0 Response Expires not interpreted correctly in IE. Is this fixed with IE 8? SharePoint Newbie 2009-11-04T13:57:41Z 2009-11-04T13:57:41Z <p>Hi,</p> <p>"IE will use the Expires header value directly in determining if content needs to be refetched."<br /> <a href="http://channel9.msdn.com/wiki/wiki/InternetExplorerBugs/" rel="nofollow">Link to article</a></p> <p>Does this issue exist with IE8 also? A workaround seems to be setting the "Cache-Control" to "max-age=0", along with the expires header. Are there any other workarounds?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1673129/ie-behaving-weirdly 0 IE behaving weirdly. SharePoint Newbie 2009-11-04T11:11:56Z 2009-11-04T11:35:42Z <p>Hi,</p> <p>We are setting Window.Location through JavaScript depending on the value selected by the user in a dropdown. The url we are setting the location to does not have HTTP Caching set up explicitly.</p> <p>However, we have observed that in certain cases, the expires header is set in the future by 1 second. Whenever this happens, changing window.location stops working for subsequent requests (even after waiting out for more than a second) as IE caches the response.</p> <p>The Response Headers:</p> <p><code> HTTP/1.1 200 OK<br /> Cache-Control: private<br /> Content-Type: text/html; charset=utf-8<br /> Date: Wed, 04 Nov 2009 10:51:22 GMT<br /> Expires: Wed, 04 Nov 2009 10:51:23 GMT<br /> ETag: 0<br /> Vary: Accept-Encoding<br /> Server: Microsoft-IIS/7.0<br /> X-AspNetMvc-Version: 1.0<br /> X-AspNet-Version: 2.0.50727<br /> X-Powered-By: ASP.NET<br /> Content-Length: 23405<br /> </code></p> <p>Is there something wrong with what we are doing?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1406608/how-to-add-and-bind-a-cs-file-to-an-ascx-aspx-page-that-doesnt-alrady-have-one/1657086#1657086 0 Answer by SharePoint Newbie for How to add and bind a cs file to an ASCX/ASPX page that doesn't alrady have one? SharePoint Newbie 2009-11-01T12:44:22Z 2009-11-01T12:50:11Z <p>Hi,</p> <p>As Jason has already answered, also put a "CodeFile=anycodefile.cs" in the page directive. <br /> <code> &lt;@Page ... Inherits="MyNamespace.MyCustomPage" CodeFile="MyCustomPage.cs"> </code></p> <p>If your page has a code-behind file, use the CodeFile attribute. Otherwise put the assembly containing the code behind class in the bin folder and use the inherits. The class must derive from webpage or usercontrol and must be public.</p> http://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable/1657044#1657044 3 Answer by SharePoint Newbie for Does public variable scope is for all sessions, or each session has its variable copy? SharePoint Newbie 2009-11-01T12:25:54Z 2009-11-01T12:25:54Z <p>Hi,</p> <ol> <li>Every Page is an instance of the WebPage class, which is destroyed and recreated on every request.<br /></li> <li>The session bag is unique to the session and is not shared across different sessions. It only stores stuff you add to it.</li> </ol> <p>1 + 2 = No. Just adding a public field to a page does not add it to session. The same value does not hold between sessions.</p> <p>Can you tell us the exact issue you are facing?</p> http://stackoverflow.com/questions/431667/does-anybody-have-experience-with-visual-studio-2008-on-windows-7/1657025#1657025 0 Answer by SharePoint Newbie for Does anybody have experience with Visual Studio 2008 on Windows 7? SharePoint Newbie 2009-11-01T12:16:06Z 2009-11-01T12:16:06Z <p>Hi,<br /> I've been using it at work since RC1 and have not run into any issues. Have developed a WinForms app, a WebForms site and now working on a MVC project.</p> http://stackoverflow.com/questions/1612929/recommendation-for-setting-maximum-size-limits-on-transaction-log-of-aspstate-dat 1 Recommendation for setting maximum size limits on Transaction Log of ASPState database. SharePoint Newbie 2009-10-23T11:48:07Z 2009-10-23T13:21:20Z <p>Hi,</p> <p>We have ASP.Net MVC Website which has &lt; 200 users with long running sessions. Each user is expected to stay logged in for at least 6-8 hrs before logging out. The average session per user is expected to be less than 1 MB. <br /> We are using the ASPState database to for session.<br/> <strong>We want to put a restriction on the maximumm size of the transaction log file which is presently set out to 8 GB. Can we do with lesser? What are the associated pitfalls if any?</strong></p> <p>Kind regards,</p> http://stackoverflow.com/questions/1585636/why-cant-new-anonymoustype-anonymoustype-be-casted-to-ienumerable 0 Why can't new[] {AnonymousType, AnonymousType} be casted to IEnumerable? SharePoint Newbie 2009-10-18T18:23:29Z 2009-10-22T21:27:32Z <p>Hi,</p> <p>I have an array of an anonymous type declared as:</p> <pre><code>var list = new[] { new {Name = "A", Age = 10}, new {Name = "B", Age = 15} } </code></pre> <p>Now list inherits from type Array, which implements IEnumerable. Why does the following fail:</p> <pre><code>Convert.ChangeType(list, typeof(IEnumerable)); </code></pre> <p>This also fails: </p> <pre><code>Convert.ChangeType(list, typeof(Array)); </code></pre> <p>Kind regards,</p> http://stackoverflow.com/questions/1594171/write-a-method-which-accepts-a-lambda-expression 2 Write a method which accepts a lambda expression. SharePoint Newbie 2009-10-20T12:13:22Z 2009-10-20T13:01:48Z <p>Hi,</p> <p>I have a method with the following signature:</p> <pre><code> void MyMethod(Delegate d){}; void MyMethod(Expression exp){}; void MyMethod(object obj){}; </code></pre> <p>However, this fails to compile:</p> <pre><code>MyMethod((int a) =&gt; a) </code></pre> <p>with the following error: </p> <pre><code>"Cannot convert lambda expression to type 'object' because it is not a delegate type" </code></pre> <p>Why doesn't this work?</p> <p>Edit: I know that this works. The compiler compiles the lambda expression to a delgate in this case I think.</p> <pre><code>void MyMethod(Func&lt;int, int&gt; d){}; </code></pre> <p>Kind regards,</p> http://stackoverflow.com/questions/1585447/get-read-write-properties-of-anonymous-type 1 Get read/write properties of Anonymous Type. SharePoint Newbie 2009-10-18T17:09:54Z 2009-10-18T17:25:20Z <p>Hi,</p> <p>I need to fetch all the properties of an anonmous type which can be written to.</p> <p>eg:<br /> var person = new {Name = "Person's Name", Age = 25};<br /> Type anonymousType = person.GetType();<br /> var properties = anonymousType.GetProperties(BindingFlags.Public | BindingFlags.Instance);<br /></p> <p>The problem is that all the properties have their "CanWrite" propert false. This is returned as true for non anonymous types.<br /> I have also tried making a call to PropertyInfo.GetSetMethod() which returns null.<br /> How can I check whether the property can be written to?</p> <p><strong>Edit:</strong><br /> Perhaps it would suffice to know if a type is anonymous or not. How do I find out if a type is anonymous using reflection?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1571879/how-do-i-move-the-transaction-log-for-a-database-using-sqlcmd-command-line 1 How do I move the Transaction Log for a database using sqlcmd/command line? SharePoint Newbie 2009-10-15T11:46:36Z 2009-10-15T14:10:14Z <p>Hi,</p> <p>I need to move the transaction log for a database I have just created using aspnet_regsql.<br /> Is it possible to move the transaction log using sqlcmd or any other command line tool?</p> <p>kind regards,</p> http://stackoverflow.com/questions/1572585/support-for-multiple-domains-in-forms-authentication 0 Support for multiple domains in Forms AUthentication. SharePoint Newbie 2009-10-15T14:04:11Z 2009-10-15T14:04:11Z <p>Hi,</p> <p>Is there a Forms Authentication provider for ASP.Net which supports multiple domains? <br /> The problem we are trying to solve is:</p> <ul> <li>External users access our website using xxx.yyy.com</li> <li>Internal users access our website using IP x.x.x.x</li> </ul> <p>We want Forms authentication to work for both these groups of users. Adding an entry to the internal DNS is not an option.<br /> We were able to get this working when we did not set the domain in the Forms tag for forms authentication? What is the domain set to if the default domain is not set explicitly in the Forms tag.</p> <p>Kind regards,</p> http://stackoverflow.com/questions/392870/fast-esp-vs-google-search-appliance-for-development 1 FAST ESP vs Google Search Appliance for development SharePoint Newbie 2008-12-25T15:14:09Z 2009-10-10T16:37:45Z <p>Hi,</p> <p>Which of the two provides a better API for developing on top of? Although there is a virtual Google Search Appliance available for download, no such equivalent is present for FAST.<br /> So looking to developers with experience in either of these products to give suggestions and links to documentation. (especially for FAST as there's none available on their site)</p> <p>Kind regards,</p> http://stackoverflow.com/questions/340474/how-many-lines-of-code-do-you-average-per-bug 6 How many lines of code do you average per bug? SharePoint Newbie 2008-12-04T12:50:04Z 2009-10-10T09:32:11Z <p>Hi,</p> <p>Our team had a bad session with the management today regarding the total number of functional bugs that were coming up in our code.</p> <p>As for me, I have written around 6 K lines of code for this project and I am personally responsible for 4 functional bugs and 8 usability bugs (inconsistent CSS, page flashing on clicking a button, validation message spread accross two lines).</p> <p>Is my average lines of code/bug too high? What's your average? Working on a SharePoint project with .NET 3.5.</p> <p>Kind regards,</p> http://stackoverflow.com/questions/550505/url-rewriting-with-iis-6-7-rewriting-host-name-httphost 0 Url Rewriting with IIS 6/7 - Rewriting Host Name {HTTP_HOST} SharePoint Newbie 2009-02-15T07:56:18Z 2009-10-08T21:45:01Z <p>Hi,</p> <p>I need to rewrite the "Host Name" {HTTP_HOST} for an incoming request. Is it possible to do this using IIS 7 Rewrite Module?<br /> I want to rewrite <a href="http://abc.xyz.com/" rel="nofollow">http://abc.xyz.com/</a>* to <a href="http://xyz.com/sites/abc/" rel="nofollow">http://xyz.com/sites/abc/</a>*. This is being done for a SharePoint site which uses the {HTTP_HOST} internally.</p> <p>Are there any Url Rewriters out there which let me change the {HTTP_HOST} variable of IIS?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1470440/free-asp-net-mvc-webforms-based-cms-which-has-plugins-built-in-for-connecting-t 0 Free ASP.Net (MVC/WebForms) based CMS which has plugins built in for connecting to Orkut and Facebook SharePoint Newbie 2009-09-24T08:38:26Z 2009-09-25T11:47:05Z <p>I looking for free ASP.NET based content management system (CMS) which has the following features:</p> <ul> <li>Blogs (Admin, some super users can have their own blogs)</li> <li>Forums (Admins can create forums. Some moderation features)</li> <li>Admin Dashboard</li> <li>Integration with LinkedIn, Orkut and Facebook (native or through freely available add-ons)</li> <li>Support for moderated user registration (moderated by Admin)</li> </ul> <p><a href="http://office.microsoft.com/en-us/sharepointtechnology/fx100503841033.aspx" rel="nofollow">Windows Sharepoint services 3.0</a> is an option. With some tweaking, it supports all the above and there are free third party web parts available.</p> <blockquote> <p><strong>NB:</strong> The CMS listed must be free, as in beer.</p> </blockquote> http://stackoverflow.com/questions/1453190/does-the-enumerator-of-a-dictionarytkey-tvalue-return-key-value-pairs-in-the-o 4 Does the Enumerator of a Dictionary<TKey, TValue> return key value pairs in the order they were added? .Net SharePoint Newbie 2009-09-21T07:11:50Z 2009-09-21T09:35:33Z <p>Hi,</p> <p>I understand that a dictionary is not an ordered collection and one should not depend on the order of insertion and retrieval in a dictionary.</p> <p>However, this is what I noticed:</p> <ul> <li>Added 20 key value pairs to a Dictionary</li> <li>Retrieved them by doing a foreach(KeyValuePair...)</li> </ul> <p>The order of retrieval was same as the order in which they were added. Tested for around 16 key value pairs.</p> <p>Is this by design?</p> http://stackoverflow.com/questions/1219520/mocking-events-with-moq-net 1 Mocking events with MOQ.Net SharePoint Newbie 2009-08-02T18:47:52Z 2009-09-14T21:10:33Z <p>Hi,</p> <p>We have repositories which have a "Save" method. They also throw a "Created" event whenever an entity is saved. We have been trying to use MOQ.Net to mock out the repository as such....</p> <pre><code>var IRepository = new Mock&lt;IRepository&gt;(); Request request = new Request(); IRepository.Setup(a =&gt; a.Save(request)).Raises(a =&gt; a.Created += null, RequestCreatedEventArgs.Empty); </code></pre> <p>This doesn't seem to work and I always get a "System.Reflection.TargetParameterCountException: Parameter count mismatch." exception. Any example of mocking events with MOQ.Net would be helpful.</p> http://stackoverflow.com/questions/393539/robots-txt-to-disallow-everything-and-allow-only-specific-parts-of-the-site-pages 1 Robots.txt to disallow everything and allow only specific parts of the site/pages. Is "allow" supported by crawlers like Ultraseek and FAST? SharePoint Newbie 2008-12-26T06:15:11Z 2009-09-01T00:43:08Z <p>Hi,</p> <p>Just wanted to know if it is possible to disallow the whole site for crawlers and allow only specific webpages or sections? Is "allow" supported by crawlers like FAST and Ultraseek?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/823433/need-to-construct-a-xml-representation-for-c-code 1 Need to construct a XML representation for C# code SharePoint Newbie 2009-05-05T05:08:15Z 2009-08-27T03:38:06Z <p>Hi,</p> <p>I need to convert C# code to an equivalent XML representation.<br /> I plan to convert the C# code (C# 2.0 code snippets, no generics or nullable types) to an AST and then convert the AST to XML. Looking for a simple lexer/parser for C# which outputs an AST.<br /> Any pointers on converting C# code to an XML representation (which can be converted back to C#) would also be very helpful.</p> <p>Kind regards,</p> http://stackoverflow.com/questions/233490/need-to-impersonate-user-foraccessing-network-resource-asp-net-account 1 Need to Impersonate user forAccessing Network resource, Asp.Net Account SharePoint Newbie 2008-10-24T13:16:28Z 2009-08-25T09:44:34Z <p>Hi,</p> <p>I need to access a network resource on which only a given Domain Account has access. I am using the LogonUser call, but get a "User does not have required priviliege" exception, as the web application is running with the asp.net account and it does not have adequate permissions to make this call.</p> <p>Is there a way to get around it? Changing the identity or permissions of the ASP.Net account is not an option as this is a production machine with many projects running. Is there a better way to achieve this?</p> <p>Using Asp.Net 2.0, Forms Authentication.</p> <p>Kind Regards.</p> http://stackoverflow.com/questions/377026/enum-tostring-not-working-in-tooltip 2 Enum.ToString() not working in tooltip SharePoint Newbie 2008-12-18T06:04:50Z 2009-08-24T23:30:34Z <p>Hi,</p> <p>I have a Linq Query where I do the following:</p> <pre><code>query = context.Select(a =&gt; new { Course = (CourseType)a.CourseCode, CourseDetail = sting.Format("Course: {0}\r\nCourse Detail: {1}", ((CourseType)a.CourseCode).ToString(), a.CourseDetail) }); enum CourseType{ Unknown = 0, FullTime = 1, PartTime = 2 } </code></pre> <p>a.CourseCode is an int and a.CourseDetail is a string. I now bind a label inside a grid to this query. I set the Text to &lt;%# Eval("Course")%> and the Tooltip to &lt;%# Eval("CourseDetail")%>. Although the text in the label correctly displays the value expected from Enum.ToString(), the Tootip always shows the value of the integer value of the enum as 1,2,3...</p> <p>Whats causing this?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance 4 SharePoint Lists vs Database Tables performance... SharePoint Newbie 2008-10-08T20:12:40Z 2009-08-14T02:39:36Z <p>Hi,</p> <ol> <li>We are looking to store transactional data in SharePoint lists. The lists will easily grow to 100,000+ items.</li> <li>How would the query performance be compared with queries on a database table with these columns?</li> </ol> <p>Queries: Select by Id Select Where ColumnValue = X Group By OrderId Group By Date</p> <p>The SP List will be 6 columns wide: Id, Date, OrderId (Lookup), Quanity, ItemName, Title</p> <p>Kind regards, Ashish Shharma</p> http://stackoverflow.com/questions/256895/how-to-use-defining-query-in-ssdl-in-entity-framework-advantages-and-examples-wi 0 How to use Defining Query in SSDL in Entity Framework? Advantages and Examples will be helpful. SharePoint Newbie 2008-11-02T13:46:08Z 2009-08-03T19:00:03Z <p>Hi,</p> <p>I need some info about using the Defining Query element within the SSDL of the Entity Framework. Advantages of using it and scenarios where it would be helpful would really help. An example and links will be great.</p> <p>Kind regards.</p> http://stackoverflow.com/questions/1673129/ie-behaving-weirdly Comment by SharePoint Newbie on IE behaving weirdly. SharePoint Newbie 2009-11-04T11:28:12Z 2009-11-04T11:28:12Z No happening with other browsers. Happening only on IE 7 and 8...but thats what our users use :( http://stackoverflow.com/questions/1673129/ie-behaving-weirdly/1673176#1673176 Comment by SharePoint Newbie on IE behaving weirdly. SharePoint Newbie 2009-11-04T11:23:57Z 2009-11-04T11:23:57Z Yes, that exactly the problem. The pages where the diff is 0 all seem to work correctly. But some requests get the expires set in the future by 1 sec. Why? http://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable/1657040#1657040 Comment by SharePoint Newbie on Does public variable scope is for all sessions, or each session has its variable copy? SharePoint Newbie 2009-11-01T12:39:52Z 2009-11-01T12:39:52Z You can also tell ASP.Net Cache to use SQL as the backing store. You can subscribe to the appropriate event to know when your object is removed from cache. http://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable/1657040#1657040 Comment by SharePoint Newbie on Does public variable scope is for all sessions, or each session has its variable copy? SharePoint Newbie 2009-11-01T12:32:12Z 2009-11-01T12:32:12Z If you want the same value to be retained accross sessions: &lt;br /&gt;1. Put it in some static/singleton. Putting it in the page is a bad idea. &lt;br /&gt;2. Putting it in a singleton/static is bad as it would die with the process, so use the DB. http://stackoverflow.com/questions/1656998/does-public-variable-scope-is-for-all-sessions-or-each-session-has-its-variable/1657040#1657040 Comment by SharePoint Newbie on Does public variable scope is for all sessions, or each session has its variable copy? SharePoint Newbie 2009-11-01T12:28:15Z 2009-11-01T12:28:15Z Yes, if its static, it will hold the same value for the entire app lifecycle. But why would you want to declare static variables on a Page? http://stackoverflow.com/questions/1594171/write-a-method-which-accepts-a-lambda-expression/1594194#1594194 Comment by SharePoint Newbie on Write a method which accepts a lambda expression. SharePoint Newbie 2009-10-20T12:32:10Z 2009-10-20T12:32:10Z But I am specifying the type myself. It is not being implicitly inferred, &quot;(int a) =&gt; a;&quot;. Could you please explain, that lambda expressions have no type itself? http://stackoverflow.com/questions/1594171/write-a-method-which-accepts-a-lambda-expression/1594198#1594198 Comment by SharePoint Newbie on Write a method which accepts a lambda expression. SharePoint Newbie 2009-10-20T12:21:53Z 2009-10-20T12:21:53Z This too doesn't work. http://stackoverflow.com/questions/1594171/write-a-method-which-accepts-a-lambda-expression/1594186#1594186 Comment by SharePoint Newbie on Write a method which accepts a lambda expression. SharePoint Newbie 2009-10-20T12:18:01Z 2009-10-20T12:18:01Z I know that this works, I want to know why do the other signatures not work. http://stackoverflow.com/questions/1594171/write-a-method-which-accepts-a-lambda-expression/1594194#1594194 Comment by SharePoint Newbie on Write a method which accepts a lambda expression. SharePoint Newbie 2009-10-20T12:17:24Z 2009-10-20T12:17:24Z I know that this works, I want to know why do the other signatures not work. http://stackoverflow.com/questions/1585447/get-read-write-properties-of-anonymous-type/1585466#1585466 Comment by SharePoint Newbie on Get read/write properties of Anonymous Type. SharePoint Newbie 2009-10-18T17:19:34Z 2009-10-18T17:19:34Z Also is it possible to know if a type is anonymous using reflection? http://stackoverflow.com/questions/1585447/get-read-write-properties-of-anonymous-type/1585466#1585466 Comment by SharePoint Newbie on Get read/write properties of Anonymous Type. SharePoint Newbie 2009-10-18T17:18:53Z 2009-10-18T17:18:53Z Hi, &quot;isn't always&quot;? Could you elaborate on that a little bit. Also I was expecting a set method to be generated too. Is the compiler smart enough to generate a setter only if it is used? - Thanks. http://stackoverflow.com/questions/1470440/free-asp-net-mvc-webforms-based-cms-which-has-plugins-built-in-for-connecting-t/1476042#1476042 Comment by SharePoint Newbie on Free ASP.Net (MVC/WebForms) based CMS which has plugins built in for connecting to Orkut and Facebook SharePoint Newbie 2009-09-25T10:51:11Z 2009-09-25T10:51:11Z It doesn't offer anything above umbraco and the restrictions on the free version are not practical for a community website. Thanks for the suggestion though. http://stackoverflow.com/questions/1219520/mocking-events-with-moq-net/1257748#1257748 Comment by SharePoint Newbie on Mocking events with MOQ.Net SharePoint Newbie 2009-08-11T06:29:51Z 2009-08-11T06:29:51Z &quot;a&quot; implements IRepository, which has methods for save, update, delete, etc. The save methods throws a RequestCreted event. http://stackoverflow.com/questions/1219520/mocking-events-with-moq-net/1257748#1257748 Comment by SharePoint Newbie on Mocking events with MOQ.Net SharePoint Newbie 2009-08-11T06:08:16Z 2009-08-11T06:08:16Z class RequestCreatedEventArgs : EventArgs &lt;br /&gt; { Request Request {get; set;} } &lt;br /&gt; public delegate void RequestCreatedEventHandler(RequestCreatedEventArgs e); http://stackoverflow.com/questions/1211143/large-viewstate-value-in-asp-net/1211151#1211151 Comment by SharePoint Newbie on Large ViewState value in ASP.NET SharePoint Newbie 2009-07-31T07:46:17Z 2009-07-31T07:46:17Z It would depend on the objects in that page.