User sirrocco - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:07:06Z http://stackoverflow.com/feeds/user/5246 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1696182/not-crawling-the-same-content-twice 1 Not crawling the same content twice sirrocco 2009-11-08T12:03:49Z 2009-11-08T14:01:29Z <p>I'm building a small application that will crawl sites where the content is growing (like on stackoverflow) the difference is that the content once created is rarely modified.</p> <p>Now , in the first pass I crawl all the pages in the site. </p> <p>But next, the paged content of that site - I don't want to re-crawl all of it , just the latest additions. </p> <p>So if the site has 500 pages, on the second pass if the site has 501 pages then I would only crawl the first and second pages. Would this be a good way to handle the situation ? </p> <p>In the end, the crawled content will end up in lucene - creating a custom search engine. </p> <p>So, I would like to avoid crawling multiple times the same content. Any better ideas ?</p> <p><strong>EDIT :</strong></p> <p>Let's say the site has a page : Results that will be accessed like so :</p> <p>Results?page=1 , Results?page=2 ...etc </p> <p>I guess that keeping a track of how many pages there were at the last crawl and just crawl the difference would be enough. ( maybe using a hash of each result on the page - if I start running into the same hashes - I should stop)</p> http://stackoverflow.com/questions/1579682/translating-between-linq-formats/1579756#1579756 2 Answer by sirrocco for Translating between LINQ formats sirrocco 2009-10-16T18:50:26Z 2009-10-16T18:50:26Z <p>You might also check out <a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> . It has a small lambda button for the bottom half of the screen, and it translates the linq query to chain methods :</p> <pre><code>from p in PropertyListings from rl in p.ResidentialListings select new {p.YearBuilt,p.ListingUrl} </code></pre> <p>got translated to :</p> <pre><code>PropertyListings .SelectMany ( p =&gt; p.ResidentialListings, (p, rl) =&gt; new { YearBuilt = p.YearBuilt, ListingUrl = p.ListingUrl } ) </code></pre> http://stackoverflow.com/questions/1576779/why-can-i-not-compare-two-generic-objects-of-a-certain-implicit-type/1576832#1576832 2 Answer by sirrocco for Why can I not compare two generic objects of a certain implicit type? sirrocco 2009-10-16T08:33:10Z 2009-10-16T09:48:54Z <p>Apparently the operator == is not implemented in structs. That's why if you put T : class , it will work.</p> <p><hr /></p> <p>The link to the file so we can see the version that you say is working would be great :) . Or just edit your post.</p> http://stackoverflow.com/questions/1571059/large-number-of-logical-reads-on-single-row-delete 0 Large number of "logical reads" on single row delete sirrocco 2009-10-15T08:33:19Z 2009-10-16T07:29:55Z <p>Hi,</p> <p>When deleting a row by its PrimaryKey from a table, I get about 44472 logical reads. Now the table has 5-6 child tables that link their ForeignKeys to the PK of the table I want to delete from. </p> <p>I'm not sure what to do to improve the performance of the delete.</p> <p>Any suggestions ?</p> <p><strong>Edit :</strong> I added the queryplan for the delete</p> <p><a href="http://img384.imageshack.us/img384/6255/deleteexecutionplan.png" rel="nofollow">http://img384.imageshack.us/img384/6255/deleteexecutionplan.png</a></p> <p><strong>Edit :</strong> I found a solution (not sure if it's the ideal solution)- it's in the response bellow.</p> http://stackoverflow.com/questions/1571059/large-number-of-logical-reads-on-single-row-delete/1576614#1576614 0 Answer by sirrocco for Large number of "logical reads" on single row delete sirrocco 2009-10-16T07:24:13Z 2009-10-16T07:24:13Z <p><a href="http://stackoverflow.com/questions/914637/delete-command-is-too-slow-in-a-table-with-clustered-index/914670#914670">This answer</a> solved the problem, now deletes work like a charm. I'm not sure if there are any downsides I should be aware of.</p> http://stackoverflow.com/questions/1421257/intercept-javascript-event 1 Intercept javascript event sirrocco 2009-09-14T12:28:41Z 2009-10-12T18:00:03Z <p>Here's what I'm trying to do :</p> <p>I have a page with some links. Most links have a function attached to them on the <em>onclick</em> event. </p> <p>Now, I want to set a css class to some links and then whenever one of the links is clicked I want to execute a certain function - after it returns , I want the link to execute the onclick functions that were attached to it. </p> <p>Is there a way to do what I want ? I'm using jQuery if it makes a difference.</p> <p>Here's an attempt at an example :</p> <pre><code>$("#link").click(function1); $("#link").click(function2); $("#link").click(function(){ firstFunctionToBeCalled(function (){ // ok, now execute function1 and function2 }); }); // somehow this needs to be the first one that is called function firstFunctionToBeCalled(callback){ // here some user input is expected so function1 and function2 must not get called callback(); } </code></pre> <p>All this is because I'm asked to put some confirmation boxes (using boxy) for a lot of buttons and I really don't want to be going through every button.</p> http://stackoverflow.com/questions/1512878/mixing-jquery-ajax-post-to-actionresult-can-i-still-return-a-new-view/1512939#1512939 0 Answer by sirrocco for Mixing Jquery Ajax Post To ActionResult, can I still return a new view? sirrocco 2009-10-03T05:58:33Z 2009-10-03T05:58:33Z <p>You should probably return the url to redirect to (or something so you can decide on the client the redirect url) , and make the redirect from js.</p> http://stackoverflow.com/questions/1461002/async-httpwebrequest-thread-number 0 Async HttpWebRequest - thread number sirrocco 2009-09-22T16:03:19Z 2009-09-22T16:06:40Z <p>Let's say I have the following code :</p> <pre><code>ThreadPool.SetMinThreads(100, 100); for (int i = 0; i &lt; 100; i++) { var request = WebRequest.Create(url); request.BeginGetResponse(ar =&gt; { //inside AsynchCallBack method for request.BeginGetResponse() var response = (HttpWebResponse)request.EndGetResponse(ar); string html; using (var receiveStream = response.GetResponseStream()) using (var readStream = new StreamReader(receiveStream , Encoding.UTF8)) { html = readStream.ReadToEnd(); } Console.WriteLine(Thread.CurrentThread.ManagedThreadId); }, null ); } </code></pre> <p>I'm expecting to see quite a lot of threads when writing to the console the ManagedThreadId - of course I am wrong :) . I generally see only 2 different thread Ids and once in a while 3 thread Ids. </p> <p>Why this behavior ? What am I missing?</p> http://stackoverflow.com/questions/208682/why-does-a-checkbox-remain-checked-in-ff3-but-not-in-ie-chrome-or 1 Why does a checkbox remain checked in FF3 but not in IE, Chrome or ... sirrocco 2008-10-16T13:58:19Z 2009-09-06T16:05:03Z <p>So - I have a checkbox</p> <pre><code>&lt;asp:CheckBox ID="chkOrder" runat="server" Visible='&lt;%#IsCheckBoxVisible() %&gt;' Checked="false" OnCheckedChanged="chkOrder_CheckedChanged" AutoPostBack="true" EnableViewState="false"&gt;&lt;/asp:CheckBox&gt; </code></pre> <p>the one above. Now, the checkbox is in a gridview and on databound - for all the rows in the gridview the checkbox is set to false. The problem is that the first checkbox is still true checked. </p> <p>In IE the problem doesn't exist, same for Chrome. I'm running out of options. Also if i use </p> <pre><code>$("checkboxName").attr("checked"); // verified on jquery ready function. </code></pre> <p>In FF it is true; IE false; Chrome false. </p> <p>Any tips?</p> <p><strong>EDIT</strong></p> <p>Now get ready for this : in the generated html - there is NO checked attribute. The diff between FF and IE is <strong>exactly the same</strong>.</p> <p>Another thing - the grid that contains the checkboxes has an ajax panel on it and when I page the grid, try to go to page 2 - the checkedChanged in codebehind is triggered.</p> http://stackoverflow.com/questions/1360388/how-do-you-map-aggregate-functions-in-nhibernate/1360405#1360405 1 Answer by sirrocco for How do you map aggregate functions in NHibernate? sirrocco 2009-09-01T03:36:48Z 2009-09-01T03:36:48Z <p>From what I know, you can't map that using nhibernate. An entity represents a table(most of the times) , what you have there is more along the lines of a report. </p> <p>To have access to that class I would create a view in the database and then create a separate entity. In your normal use of Buyer you probably don't always need AverageOrderAmount and LastOrderDate - I think that you're using that to display this information on the interface , in which case you should create and map a DB view.</p> http://stackoverflow.com/questions/1337793/nhibernate-objectdeletedexception/1338815#1338815 0 Answer by sirrocco for NHibernate.ObjectDeletedException sirrocco 2009-08-27T04:11:43Z 2009-08-27T04:11:43Z <p>Well, I don't think the Record should have a cascade="all" on the Artist.</p> <p>The problem is that you call delete on the Artist and when you save the Record it will try to re-save the artist (because of the cascade). Hence the error :).</p> <p>Since you have not-null on the Record's Artist property , you shouldn't delete an Artist, but delete the Record and the Artist should be deleted automatically .</p> http://stackoverflow.com/questions/1283924/how-can-i-set-a-property-using-nhibernate-mapping-column-using-some-crtieria/1301748#1301748 1 Answer by sirrocco for How can I set a Property using NHibernate Mapping column using some crtieria sirrocco 2009-08-19T18:21:46Z 2009-08-19T18:21:46Z <p>I wouldn't make BestSellingProduct a property on ProductCategory - I mean I would imagine a ProductCatalog that can answere to : get me the bestselling product for a category .</p> <p>If you <strong>really</strong> want to use the property then you could do what section 13.4 says should be possible : <a href="https://www.hibernate.org/hib%5Fdocs/nhibernate/1.2/reference/en/html/querysql.html" rel="nofollow">Custom SQL for loading - nhibernate</a></p> http://stackoverflow.com/questions/1296728/bidirectional-hql-query-with-nhibernate/1297679#1297679 1 Answer by sirrocco for Bidirectional HQL Query with NHibernate sirrocco 2009-08-19T03:21:08Z 2009-08-19T03:21:08Z <p>It would be something like :</p> <pre><code>select p from Parent join p.Children c where c.Property = 'some_value' </code></pre> <p>Also have a look at <a href="https://www.hibernate.org/hib%5Fdocs/nhibernate/html/queryhql.html" rel="nofollow">The NHibernate Query Language</a> </p> http://stackoverflow.com/questions/1295432/c-my-dialog-return-value-doesnt-work/1295453#1295453 3 Answer by sirrocco for C#: My dialog return value doesn't work sirrocco 2009-08-18T17:46:11Z 2009-08-18T17:46:11Z <p>You need to set the DialogResult property of the child form</p> <pre><code>DialogResult = DialogResult.OK </code></pre> <p>in the button click . </p> http://stackoverflow.com/questions/1288463/how-to-invalidate-portions-of-asp-net-mvc-output-cache/1289655#1289655 0 Answer by sirrocco for How to "invalidate" portions of ASP.NET MVC output cache? sirrocco 2009-08-17T18:38:42Z 2009-08-18T03:16:34Z <p>One way is to use the method :</p> <pre><code>HttpResponse.RemoveOutputCacheItem("/Home/About"); </code></pre> <p>Another way is described here : <a href="http://aspalliance.com/668" rel="nofollow">http://aspalliance.com/668</a></p> <p>I think you could implement the second method by using a method level attribute for every action that you want and just add to it the string representing the key. That's if I understood your question.</p> <p><strong>Edit:</strong> Yes the asp.net mvc OutputCache is just a wrapper .</p> <p>If you're using varyByParam="none" then you just invalidate "/Statistics" - that's if / are querystring values. This will invalidate all versions of the page</p> <p>I did a quick test and if you add varyByParam="id1" and then create multiple versions of the page - if you say invalidate invalidate "/Statistics/id1" it will invalidate just that version. But you should do further tests.</p> http://stackoverflow.com/questions/1286827/nhibernate-save-get-problem/1288910#1288910 3 Answer by sirrocco for nhibernate 'save' -> 'get' problem sirrocco 2009-08-17T16:12:53Z 2009-08-17T18:08:12Z <p>Ok, I just tested this :</p> <pre><code> ISession session = s.CreateSession(); User user = new User(); user.Number = 122; user.UserName = "u"; user.Id = 1; session.Save(user); User user1 = session.CreateCriteria&lt;User&gt;().Add(Restrictions.Eq("UserName", "u")).UniqueResult&lt;User&gt;(); session.Flush(); </code></pre> <p>First the Select is being executed from the CreateCriteria and then on Flush the insert. So that's why it's not finding anything.</p> <p>I also tested with <code>Get&lt;User&gt;(1)</code> and it returns the entity passed to the Save method - no query is executed.</p> <p>Still - why query the database since you have the entity right there ?</p> <p>Also, you say you use Get and then say you want to load by the UserName - is the UserName the primary key ? Get tries to load by the primary key.</p> http://stackoverflow.com/questions/1277971/nhibernate-tag-cloud-query/1282547#1282547 1 Answer by sirrocco for Nhibernate Tag Cloud Query sirrocco 2009-08-15T18:50:20Z 2009-08-16T04:34:09Z <p>I managed to get it working like this :</p> <pre><code>var dc = DetachedCriteria.For&lt;Foo&gt;( "f") .CreateCriteria("Tags", "t") .Add(Restrictions.InG("t.Id", idsIn)) .SetProjection(Projections.SqlGroupProjection("{alias}.FooId", "{alias}.FooId having count(distinct t1_.TagId) = " + idsIn.Count, new[] { "Id" }, new IType[] { NHibernateUtil.Int32 })); </code></pre> <p>The only problem here is the count(<strong>t1_</strong>.TagId) - but I think that the alias should be generated the same every time in this DetachedCriteria - so you should be on the safe side hard coding that.</p> http://stackoverflow.com/questions/1278441/httpcontext-current-user-isinrolerolename-always-returns-false/1278488#1278488 3 Answer by sirrocco for HttpContext.Current.User.IsInRole(roleName) always returns false sirrocco 2009-08-14T15:20:50Z 2009-08-14T15:20:50Z <p>First : use a profiler and when executing the HttpContext.Current.User.IsInRole("{roleName}") line, check what the sql query is.</p> <p>If it's not making a query then you probably have cacheRolesInCookie="true" and IsInRole will be checking the FormsAuthenticationTicket for UserData. Be sure that when you create the FormsAuthenticationTicket you set the userdata parameter to a comma delimited string with the roles of the user.</p> http://stackoverflow.com/questions/1276075/nhibernate-deleting-a-collection-and-re-inserting/1276154#1276154 0 Answer by sirrocco for NHibernate: Deleting a collection and re-inserting sirrocco 2009-08-14T05:11:23Z 2009-08-14T05:11:23Z <p>I think that when you edit you shouldn't create a new object - that's why nhibernate doesn't remove the permission collection. </p> <p>Load the existing user from the DB, and then do a .Remove() on his permissions collection.</p> http://stackoverflow.com/questions/1275728/problems-with-a-custom-route-in-asp-net-mvc/1275877#1275877 1 Answer by sirrocco for Problems with a custom route in ASP.NET-MVC. sirrocco 2009-08-14T03:16:50Z 2009-08-14T04:03:05Z <p>First you should put your most generic route at the bottom.</p> <p>Then, how about doing something like :</p> <pre><code> routes.MapRoute( "materias", "{materias}/{action}/{id},{titulo_materia}.html", new { controller = "materias", action = "Index", id = "", titulo_materia = "" } ); routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); </code></pre> <p>This way , the materias route only works for the materias controller. (not tested)</p> <p><strong>EDIT:</strong> htmm .. try using martin's example with a small addition : </p> <pre><code>Html.RouteLink("Link Title", new { controller = "Controller", Action= "Action",id = this.Model.login }); </code></pre> http://stackoverflow.com/questions/1275890/check-file-in-used-by-c-code/1275910#1275910 6 Answer by sirrocco for Check file in used by C# code sirrocco 2009-08-14T03:33:08Z 2009-08-14T03:33:08Z <p>Something like this should work : </p> <pre><code> public bool FileIsLocked(string fileName) { FileStream fs; try { fs = File.Open(fileName, FileMode.OpenOrCreate, FileAccess.Read, FileShare.None); fs.Dispose(); } catch (IOException) { return true; } return false; } </code></pre> http://stackoverflow.com/questions/1275725/restrictions-disjunction-between-condition-a-and-condition-b-or-condition-c-and/1275892#1275892 1 Answer by sirrocco for Restrictions.Disjunction() between condition a AND condition b OR condition c AND condition d sirrocco 2009-08-14T03:23:45Z 2009-08-14T03:23:45Z <p>It's not exactly pretty but you would write it like this :</p> <pre><code>.Add( Restrictions.Or( Restrictions.Conjunction().Add(Restrictions.Eq("columnA", true)).Add(Restrictions.Eq("columnB", true)), Restrictions.Conjunction().Add(Restrictions.Eq("columnC", true)).Add(Restrictions.Eq("columnD", true)) ); ) </code></pre> http://stackoverflow.com/questions/1272999/am-i-using-asp-net-mvc-correctly/1273586#1273586 2 Answer by sirrocco for am i using asp.net mvc correctly? sirrocco 2009-08-13T17:54:29Z 2009-08-13T17:54:29Z <p>The answere is - you souldn't have html in your controller. If you can't use the grid from MvcContrib as suggested then you sould create a class that takes the DataTable and outputs the html - in an overridden ToString method or a specific method that you call .</p> <p>And use it like :</p> <pre><code>&lt;%= new MyGridGenerator(DataTable ..) %&gt; </code></pre> http://stackoverflow.com/questions/1270224/how-does-nhibernate-know-which-class-properties-to-put-value-into/1273490#1273490 1 Answer by sirrocco for How does NHibernate know which class properties to put value into? sirrocco 2009-08-13T17:39:02Z 2009-08-13T17:39:02Z <p>Are you sure it works correctly ? I just tested this and added one child to each collection and as expected each collection had the same 2 children.</p> http://stackoverflow.com/questions/1271626/visualization-of-activerecord-nhibernate-entity-model/1272033#1272033 1 Answer by sirrocco for Visualization of ActiveRecord / NHibernate Entity Model sirrocco 2009-08-13T13:41:51Z 2009-08-13T15:11:05Z <p>The best thing I can think of is generating a class diagram from VisualStudio of your classes .... </p> http://stackoverflow.com/questions/1270207/complex-model-binding 1 Complex model binding sirrocco 2009-08-13T05:40:22Z 2009-08-13T06:57:22Z <p>I have a Client dto that contains a bunch of fields and also contains a List. </p> <p>Now, I can bind to it quite easy, and it will display the Client with all of his addresses. The thing is that the user can delete and add addresses dynamically. </p> <p>I thought about adding forms surrounding each address but then I end up with inner forms and I know browsers don't play well with that. </p> <p>Then I thought about using javascript but if an address is removed, I have to go over all addresses and change their indexes (addresses[0].City )because I noticed that if the indexes are not in order, and the action takes a ClientForm as a parameter, then only the addresses that have consecutive indexes and they start at 0 - will get in the ClientForm.Addresses list.</p> <p>Any other solutions that are easy to implement ? Am I missing something ?</p> http://stackoverflow.com/questions/1269970/nhibernate-set-property-default-value/1270225#1270225 0 Answer by sirrocco for NHibernate Set Property Default Value sirrocco 2009-08-13T05:47:33Z 2009-08-13T05:47:33Z <p>If the ParentCategoryId is not constrained by a foreign key, then you can have in your code ... something like :</p> <pre><code>class Category{ .... public static Category NoParent{ get{ return new Category{Id = 0}; } } .... } </code></pre> <p>and now, instead of setting to null, just set it to NoParent. Or in the setter of ParentCategory, if value is null, then set it to NoParent.</p> <p>This is basically <strong>Spencer Ruport's</strong> ideea :P</p> http://stackoverflow.com/questions/1252313/persist-a-top-level-collection/1253026#1253026 1 Answer by sirrocco for Persist a top-level collection? sirrocco 2009-08-10T03:43:10Z 2009-08-10T03:43:10Z <p>If you load objects like in your example - then yes you have to persist them one by one.</p> <p>However, if you make a small design change, and load something like : Account that has an <code>IList&lt;Project&gt;</code> - if you specify cascade "what_cascade_you_need" in the mapping , then when you change the projects on Account , you only have to save Account and everything will get saved.</p> http://stackoverflow.com/questions/1234704/nhibernate-2-1-proxy-factory-options-what-are-the-differences-and-which-to-choo/1234868#1234868 3 Answer by sirrocco for NHibernate 2.1 Proxy Factory options - what are the differences and which to choose? sirrocco 2009-08-05T18:16:26Z 2009-08-05T18:16:26Z <p>You can read more about them here :</p> <p><a href="http://nhforge.org/blogs/nhibernate/archive/2008/11/09/nh2-1-0-bytecode-providers.aspx" rel="nofollow">http://nhforge.org/blogs/nhibernate/archive/2008/11/09/nh2-1-0-bytecode-providers.aspx</a></p> <p>and </p> <p><a href="http://groups.google.com/group/nhusers/browse%5Fthread/thread/2f78857456bde8d6" rel="nofollow">http://groups.google.com/group/nhusers/browse_thread/thread/2f78857456bde8d6</a></p> <p>Basically at this point the main thing is : just pick one and be done :) .</p> http://stackoverflow.com/questions/1231054/nhibernate-easiest-way-to-do-a-like-search-against-an-integer-column-with-crite/1234142#1234142 3 Answer by sirrocco for NHibernate - easiest way to do a LIKE search against an integer column with Criteria API? sirrocco 2009-08-05T15:53:54Z 2009-08-05T17:50:29Z <p>If Number were a string, then it would be easy :</p> <pre><code>.Add(Restrictions.Like("Number", "some_value",MatchMode.Anywhere)) </code></pre> <p>Since you have a number, NHibernate will check the type of Number and if you give it a string it will throw an exception.</p> <p>Not sure why the NH team didn't provide an overload with object as parameter and a MatchMode parameters ....</p> <p>Anyhow, you can still do it like this : </p> <pre><code>.Add(Expression.Sql("{alias}.Number like ?", "%2%", NHibernateUtil.String)) </code></pre> <p><strong>Edit</strong></p> <p>About the alias : </p> <p>(i can't find where the documentation talks about this but here's my understanding of it )</p> <p>{alias} returns the alias used inside by NH for the most recent CreateCriteria. So if you had :</p> <pre><code>session.CreateCriteria&lt;User&gt;("firstAlias") .CreateCriteria("firstAlias.Document", "doc") .Add(Expression.Sql("{alias}.Number like ?", "%2%", NHibernateUtil.String)).List&lt;User&gt;(); </code></pre> <p>{alias} in this case would be 'doc' - so you would end up with : doc.Number .</p> <p>So, always use {alias} after the CreateCriteria whose alias you need to use.</p> http://stackoverflow.com/questions/1696182/not-crawling-the-same-content-twice Comment by sirrocco on Not crawling the same content twice sirrocco 2009-11-08T15:55:19Z 2009-11-08T15:55:19Z As I mentioned in the edit, I meant that once a &quot;Result&quot; was added it doesn't change . When I said pages I meant more in the sense of paging some results. The total number of pages changes once stuff is added but the content of one Result doesn't change usually . http://stackoverflow.com/questions/1696182/not-crawling-the-same-content-twice/1696193#1696193 Comment by sirrocco on Not crawling the same content twice sirrocco 2009-11-08T12:16:48Z 2009-11-08T12:16:48Z Damn, you're right, I just realized that each result on the page must have a unique url. Thanks :) http://stackoverflow.com/questions/1576779/why-can-i-not-compare-two-generic-objects-of-a-certain-implicit-type/1576832#1576832 Comment by sirrocco on Why can I not compare two generic objects of a certain implicit type? sirrocco 2009-10-16T09:30:21Z 2009-10-16T09:30:21Z Well if you're using the second version &quot;ISettings explicit1 = null;&quot; - then explicit1 is a reference type and that's why it works. Just implement IEquatable use .Equals and be done with it :) http://stackoverflow.com/questions/1576779/why-can-i-not-compare-two-generic-objects-of-a-certain-implicit-type/1576832#1576832 Comment by sirrocco on Why can I not compare two generic objects of a certain implicit type? sirrocco 2009-10-16T08:55:19Z 2009-10-16T08:55:19Z Well then you need ISettings to implement IEquatable since there is no default == on a Struct. http://stackoverflow.com/questions/1550718/unable-to-bind-id-property-to-the-view-due-to-conflict-with-id-property-of-system Comment by sirrocco on Unable to bind ID Property to the View,due to conflict with ID Property of System.Web.UI.Page in asp.net mvc. sirrocco 2009-10-13T04:33:35Z 2009-10-13T04:33:35Z What is the ID property ? If your trying to access your model , then you use what mathieu suggested. - The ID property.. is some property of the page, you don't use that. http://stackoverflow.com/questions/1465509/best-way-to-maintain-session-state-in-mvc/1465516#1465516 Comment by sirrocco on Best way to maintain session state in MVC sirrocco 2009-09-23T17:21:42Z 2009-09-23T17:21:42Z Querystring for the win - always use the querystring for a search. It's much more friendly. http://stackoverflow.com/questions/1461002/async-httpwebrequest-thread-number/1461021#1461021 Comment by sirrocco on Async HttpWebRequest - thread number sirrocco 2009-09-22T16:11:26Z 2009-09-22T16:11:26Z Wow - that was fast :) . Thank you very much. http://stackoverflow.com/questions/1421257/intercept-javascript-event/1421364#1421364 Comment by sirrocco on Intercept javascript event sirrocco 2009-09-14T12:54:04Z 2009-09-14T12:54:04Z Yes, but when that gets clicked, I need to execute a function and on that functions callback - continue to run all it's click attached functions. http://stackoverflow.com/questions/1421257/intercept-javascript-event/1421276#1421276 Comment by sirrocco on Intercept javascript event sirrocco 2009-09-14T12:46:39Z 2009-09-14T12:46:39Z Exactly, the thing is that every link has a different method/methods - and the mechanism needs to be generic - so I can apply it to any element. http://stackoverflow.com/questions/1357992/request-isauthenticated-false-on-ajax-post Comment by sirrocco on Request.IsAuthenticated = false on Ajax post sirrocco 2009-08-31T16:02:07Z 2009-08-31T16:02:07Z This is NOT by design - a request (ajax or not) is just a request to a web server. So you should give some more details about this - if you hit f5 - the user is authenticated and on the next ajax call - it's not authenticated ? http://stackoverflow.com/questions/1337793/nhibernate-objectdeletedexception/1338815#1338815 Comment by sirrocco on NHibernate.ObjectDeletedException sirrocco 2009-08-28T03:55:35Z 2009-08-28T03:55:35Z Well, if Artist is referenced by multiple Records, and you delete the Artist - wouldn't you end up with inconsistency in the Database ? - with Records that have non existent Artists ? Don't you have FKs in the DB ? http://stackoverflow.com/questions/1338175/nhibernate-and-mysql-is-inserting-and-selecting-not-updating Comment by sirrocco on NHibernate and MySql is inserting and Selecting, not updating sirrocco 2009-08-27T04:05:31Z 2009-08-27T04:05:31Z The thing is , even without the Session.Update , the user should get updated. Something special in the GetById method ? :D http://stackoverflow.com/questions/491375/readonlycollection-or-ienumerable-for-exposing-member-collections/491591#491591 Comment by sirrocco on ReadOnlyCollection or IEnumerable for exposing member collections? sirrocco 2009-08-26T17:59:57Z 2009-08-26T17:59:57Z Well there you go - 5 minutes on SO and I already feel a bit smarter :P http://stackoverflow.com/questions/856761/does-nhibernate-criteria-api-support-projections-on-collection-properties/1323889#1323889 Comment by sirrocco on Does NHibernate Criteria API support projections on collection properties? sirrocco 2009-08-25T04:01:36Z 2009-08-25T04:01:36Z It would suck .. but you could map the parent on the children in a protected property or private variable that you don't use .... http://stackoverflow.com/questions/1325947/net-developers-please-i-need-mcts-and-mcpd-exam-dumps Comment by sirrocco on .Net Developers! Please I need MCTS and MCPD exam dumps sirrocco 2009-08-25T03:59:46Z 2009-08-25T03:59:46Z just curious if I can comment in a closed thread.