sirrocco

1,837
reputation
329 views

Registered User

name sirrocco
member for 1 year
seen 7 hours ago
website
http:///
location RO
age 25
--
Dec
8
accepted What’s the best way to save a one-to-many relationship in Linq2Sql?
Dec
7
revised Render partial view based on condition
added 58 characters in body; added 10 characters in body
Dec
7
comment Render partial view based on condition
Well... this is a Partial View , so I don't what exactly should I check in the Controller ?. I mean I have a view , with 3 Partial Views. Only one Partial view should be displayed at any time.
Dec
7
asked Render partial view based on condition
Nov
8
comment Not crawling the same content twice
As I mentioned in the edit, I meant that once a "Result" 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 .
Nov
8
comment Not crawling the same content twice
Damn, you're right, I just realized that each result on the page must have a unique url. Thanks :)
Nov
8
revised Not crawling the same content twice
added 366 characters in body
Nov
8
asked Not crawling the same content twice
Oct
16
answered Translating between LINQ formats
Oct
16
revised Why can I not compare two generic objects of a certain implicit type?
added 134 characters in body
Oct
16
comment Why can I not compare two generic objects of a certain implicit type?
Well if you're using the second version "ISettings explicit1 = null;" - then explicit1 is a reference type and that's why it works. Just implement IEquatable use .Equals and be done with it :)
Oct
16
comment Why can I not compare two generic objects of a certain implicit type?
Well then you need ISettings to implement IEquatable since there is no default == on a Struct.
Oct
16
answered Why can I not compare two generic objects of a certain implicit type?
Oct
16
revised Large number of “logical reads” on single row delete
added 98 characters in body
Oct
16
answered Large number of “logical reads” on single row delete
Oct
15
revised Large number of “logical reads” on single row delete
added 189 characters in body; deleted 1 characters in body; added 16 characters in body
Oct
15
asked Large number of “logical reads” on single row delete
Oct
13
comment Unable to bind ID Property to the View,due to conflict with ID Property of System.Web.UI.Page in asp.net mvc.
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.
Oct
3
answered Mixing Jquery Ajax Post To ActionResult, can I still return a new view?
Sep
23
comment Best way to maintain session state in MVC
Querystring for the win - always use the querystring for a search. It's much more friendly.
Sep
22
comment Async HttpWebRequest - thread number
Wow - that was fast :) . Thank you very much.
Sep
22
asked Async HttpWebRequest - thread number
Sep
14
accepted NHibernate 2.1 Proxy Factory options - what are the differences and which to choose?
Sep
14
revised Intercept javascript event
added 653 characters in body
Sep
14
comment Intercept javascript event
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.
Sep
14
comment Intercept javascript event
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.
Sep
14
asked Intercept javascript event
Sep
9
awarded  Yearling
Sep
2
awarded  Notable Question
Sep
2
accepted Check file in used by C# code
Sep
1
accepted How do you map aggregate functions in NHibernate?
Sep
1
answered How do you map aggregate functions in NHibernate?
Aug
31
comment Request.IsAuthenticated = false on Ajax post
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 ?
Aug
28
comment NHibernate.ObjectDeletedException
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 ?
Aug
27
answered NHibernate.ObjectDeletedException
Aug
27
comment NHibernate and MySql is inserting and Selecting, not updating
The thing is , even without the Session.Update , the user should get updated. Something special in the GetById method ? :D
Aug
26
comment ReadOnlyCollection or IEnumerable for exposing member collections?
Well there you go - 5 minutes on SO and I already feel a bit smarter :P
Aug
25
comment Does NHibernate Criteria API support projections on collection properties?
It would suck .. but you could map the parent on the children in a protected property or private variable that you don't use ....
Aug
24
comment Can this API be improved?
just for the record I was responding to jrista :)
Aug
24
comment Can this API be improved?
Why ? the method with the most parameters will still have to look for nulls in the other parameters ?
Aug
24
accepted am i using asp.net mvc correctly?
Aug
24
awarded  
Aug
21
comment Javascript checkboxes with <asp:checkbox />
Hmm.. the javascript in the link is not a jquery plugin. What's the .checkbox() method suppose to do ?
Aug
21
comment Javascript checkboxes with <asp:checkbox />
Well there you go, there's a problem in the plugin. Try to write the same structure in html as asp.net generates it. See if you see different behavior. Also install firebug and see if any errors are generated.
Aug
21
comment Javascript checkboxes with <asp:checkbox />
that has very small chances o working as asp.net will probably generate the id like ctl00_..._mycheck .
Aug
21
comment Javascript checkboxes with <asp:checkbox />
If you put an <asp:Checkbox and an html checkbox side by side and then do : $('input:checkbox').length - is that equal to 2 ?
Aug
20
comment Complicated NHibernate component mapping
That helps his problem in absolutely no way. If he applies a generator it will not create the class structure he wants.
Aug
19
comment HttpContext.Current.User.IsInRole(roleName) always returns false
Hey, you could edit your answer to tell us what the configs were - might help others in the future.
Aug
19
accepted Problems with a custom route in ASP.NET-MVC.
Aug
19
comment How can I set a Property using NHibernate Mapping column using some crtieria
I'm glad it's what you need, but again - i'd advise against it. Best of luck