User Hrvoje - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:48:01Z http://stackoverflow.com/feeds/user/1407 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839119/avoid-compiling-whole-asp-net-project/1840658#1840658 2 Answer by Hrvoje for avoid compiling whole asp.net project? Hrvoje 2009-12-03T15:30:58Z 2009-12-08T12:00:13Z <p>.NET is compiled language so you cannot "compile" just some classes. But you can precompile whole site after you add some files, that can speed up "cold start", so it would not need to be precompiled on first visit. If you're using "Publish" tool in VS, you can add Post build event which calls precompiler on published location. You will always experience longer start time on first access, you cannot avoid that. At least I don't know how...<br> Second option is ngen.exe, which will create native image from your IL-based .net managed code, and reduce startup time (on first request, .net will see this native image and just execute it). But with using ngen.exe you are loosing some runtime optimization, because ngen must "play safe", so SSE and similar optimization are not possible. It is recommended to perform performance profiling on using ngen.exe, in some cases app will perform slower! </p> http://stackoverflow.com/questions/1802642/listview-dynamic-controls-and-datapager-events/1802880#1802880 0 Answer by Hrvoje for ListView -Dynamic Controls and DataPager events Hrvoje 2009-11-26T10:32:40Z 2009-11-26T10:32:40Z <p>Problem is that you have to create controls in OnInit, then ViewState persister can do it's job. If you do it after OnInit, in ItemDataBound, when Postback is triggered, controls doesn't exists and their's viewstate isn't deserialized.<br> To access values of radio buttons and get selected one, you have to look at Request.Form dictionary and find it.</p> http://stackoverflow.com/questions/1662138/available-ram-on-shared-hosting-provider 0 Available RAM on shared hosting provider Hrvoje 2009-11-02T15:58:39Z 2009-11-25T16:19:19Z <p>I'm building business app that will hold somewhere between 50,000 to 150,000 companies. Each company (db row) is represented with 4-5 properties/columns (title, location,...). ORM is LINQ2SQL.</p> <p>I have to do some calculation, and for that I have lot of queries for specific company. Now, i go to db every time when i need something, and it produces 50-200 queries, depending on calculation complexy. I tried to put all companies to cache, and for 10,000 rows (companies) in db, it takes around 5,5MB of cache. In this scenario, I have only one query.</p> <p>This application will be on shared hosting server, so my resources are limited. I'm interested, what will happen if I try to load, let say 100,000 companies (rows, objects)? Or put that in cache?<br /> Is there any RAM limit that average hosting company give to ASP.NET application? Does it depend on dedicated Applcation Pool (I can put app to dedicated pool)?</p> <p><strong>Options are</strong>:<br /> - load whole table to c# objects. Id did some memory profiling, 10,000 objects needs 5MB RAM<br /> - query db to get referenced objects when needed.</p> <p><em>Task is</em>: for given company A, build tree of connected companies. </p> <p><strong>Table and columns</strong>:<br /> <em>Company</em> : IdCompany, Title, Address, Contact<br /> <em>CompanyConnection:</em> IdParentCompany, IdChildCompany</p> http://stackoverflow.com/questions/1666839/handing-forms-in-viewusercontrols/1666886#1666886 1 Answer by Hrvoje for Handing forms in ViewUserControls Hrvoje 2009-11-03T11:56:11Z 2009-11-03T12:03:27Z <p>There is no postaback, like in standard asp.net, there can be only form tag that posts data to some url (controller/action).<br /> Inside your partial user control, write: </p> <pre><code>&lt;form action="controller/actionname" method="post"&gt; &lt;input type="text" name="inputText" /&gt; &lt;input type="submit" value="Post data to server" /&gt; &lt;/form&gt; </code></pre> <p>In MVC, only input type="submit" triggers form submit. In standard ASP.NET webforms, you can have many Linkbuttons, Buttons, ... but under cover, they all triggers this simple click on input type="submit" through javascript event. One form can post data to only one URL (controller/action), but that can be changed with javascript (as we can see in html source of 'old' asp.net webforms).</p> <p>then, in controller you can handle post data:</p> <pre><code>[AcceptVerb(HttpVerb.Post)] // optionally public ActionResult ActionName(string inputText) ... </code></pre> http://stackoverflow.com/questions/1351256/usercontrol-visibility-binding-through-viewmodel 0 UserControl Visibility binding through ViewModel Hrvoje 2009-08-29T11:52:23Z 2009-10-14T19:43:22Z <p>Simplified architecture of my Silverlight app: </p> <ul> <li>MainPage; DataContext set to MainViewModel</li> <li>MainPage has two elements: UserControl and Rectangle</li> <li>in MainViewModel, I have two properties, UserControlVisible and RectVisible, both of type Visibility, binded to Visibility properties of those two elements in MainPage.XAML</li> <li>MainViewModel has INotifyPropertyChanged implemented</li> </ul> <p>Problem is, when I set RectVisible property in MainViewModel to Visibility.Collapsed, Rectangle hides, which is fine, but when I set Visibility.Collapsed to UserControl (UserControlVisible property), it never hides!<br /> I cannot hide that user control, and I have to do it through my ViewModel class. Why it works with Rectangle element, but not with UserControl? When I manually set Visibility to Collapsed in XAML, then it's hidden, but I have to do it through code and ViewModel object. </p> <p>(edit) <strong>Temporary sollution:</strong> </p> <p>I manually subscribed to PropertyChanged event in codebehind</p> <pre><code>void MainPage_Loaded(object sender, RoutedEventArgs e) { viewmodel=new MainViewModel(); this.DataContext = viewmodel; // fix for binding bug: viewmodel.PropertyChanged += viewmodel_PropertyChanged; } void viewmodel_PropertyChanged(object sender, PropertyChangedEventArgs e) { if (e.PropertyName == "LoginVisible") loginWindowControl.Visibility = viewmodel.LoginVisible; } </code></pre> http://stackoverflow.com/questions/1481311/how-do-i-insert-object-datatable-tablerow-ect-into-an-asp-net-webpage/1481431#1481431 1 Answer by Hrvoje for How do I insert object (datatable, tableRow ect...) into an asp.net webpage? Hrvoje 2009-09-26T15:15:52Z 2009-09-26T15:34:19Z <p>Put some data control to page, like GridView, Repeater, DataList, and bind it like this: </p> <pre><code>GridView1.DataSource=tab.GetData(int.Parse(TextBox1.Text)); GridView1.Databind(); </code></pre> http://stackoverflow.com/questions/1469298/how-to-plan-a-project/1481161#1481161 1 Answer by Hrvoje for How to plan a project... Hrvoje 2009-09-26T12:59:25Z 2009-09-26T12:59:25Z <ol> <li>Watch first 2-3 videos from <a href="http://www.autumnofagile.net/" rel="nofollow">Autumn of Agile</a>. It covers brainstorming and writing down user stories, setting up PM software (TargetProcess, i love it!), defining tasks and iterations, etc. </li> <li>Read <a href="http://www.joelonsoftware.com/articles/fog0000000036.html" rel="nofollow">Functional specification blog posts</a> from Joel Spolsky, where he explains what's the difference between functional and technical specs, and why you need them.</li> <li>and maybe i would also recommend reading <a href="http://openmymind.net/FoundationsOfProgramming.pdf" rel="nofollow">Foundation of Programming</a> short ebook, to get familiar with problems on building enterprise systems (well, it can be applied to almost any software development, in my opinion), why's agile good, what's DDD, etc. Really nice high level overview</li> </ol> http://stackoverflow.com/questions/1477471/design-pattern-for-handling-multiple-message-types/1477732#1477732 1 Answer by Hrvoje for Design pattern for handling multiple message types Hrvoje 2009-09-25T14:46:53Z 2009-09-25T14:46:53Z <p>For my little messaging framework inside Silverlight app i'm using Mediator pattern. It's some kind of messaging bus/broker, to which objects are subscribing for specific type or types of message. Then this Mediator object (broker/bus) is deciding who will receive what kind of messages.<br /> Someting like: </p> <pre><code>SubscribeFor&lt;ChatMessage&gt;().If(x=&gt;x.SomeProp==true).Deliver(MyMethod); </code></pre> <p>Sample methods that are called:</p> <pre><code>void MyMethod(ChatMessage msg) , or void MyMethod(BaseBessage msg) </code></pre> <p>or publishing (broadcasting) of messages:</p> <pre><code>Publish(new ChatMessage()); </code></pre> <p>BaseMessage is abstract class, which all my messages inherits, and have just reference to sender and some unique Guid. </p> <p>I took starting point for building my messaging framework from <a href="http://geekswithblogs.net/lbugnion/archive/2009/06/16/mvvm-light-toolkit-silverlight-edition-posted.aspx" rel="nofollow">MVVM Light Toolkit</a>, you can take a look at theirs source code, it's not complicated!</p> <p>If you whish, I can put c# code for this somewhere?</p> http://stackoverflow.com/questions/1431473/asp-net-putting-dynamic-controls-on-page-in-reverse-messes-up-events/1431621#1431621 0 Answer by Hrvoje for ASP.NET putting dynamic controls on page in reverse messes up events Hrvoje 2009-09-16T08:10:22Z 2009-09-16T08:10:22Z <p>Always put dynamic controls in OnInit event. Then viewstate serializer/deserializer will work. And you have to add controls on every request, not just in !IsPostBack. </p> http://stackoverflow.com/questions/1425642/refresh-asp-net-page-periodically-to-display-real-time-data-from-sql-server/1425669#1425669 0 Answer by Hrvoje for Refresh ASP.NET page periodically to display real time data from SQL Server Hrvoje 2009-09-15T07:29:06Z 2009-09-15T07:29:06Z <p>I would generate JavaScript that updates all Repeater items (html fields with prices), and has setTimeout() for periodical checking to web service (wcf, asmx or ashx) if price has changed. If it has, then i would retrieve all prices and update HTML fields! User don't need to prees anything, you can show him some notice that price has changed.<br /> With jQuery and JSON for object serialisation this could be easily accomplished.</p> http://stackoverflow.com/questions/1346251/capture-image-from-webcam-asp-net-c/1346599#1346599 0 Answer by Hrvoje for capture image from webcam asp.net c# Hrvoje 2009-08-28T12:06:17Z 2009-08-28T12:06:17Z <p>I think that only Flash has webcam support (it has something like: var c=Camera.get();movieControl.attachVideo(c); - but don't know about transferring video stream to server). You need some client scripting, which has nothing to do with server side of story, it could be asp.net, php, ruby, ...</p> http://stackoverflow.com/questions/1064254/what-are-some-good-open-source-c-examples-of-quality-domain-models/1334063#1334063 0 Answer by Hrvoje for What are some good open source c# examples of quality domain models. Hrvoje 2009-08-26T11:29:33Z 2009-08-26T11:29:33Z <p>I recently come across tutorial on building Forum application with MVC, nHibernate, AutoMapper, and I find source code really good written and structured, with nice examples on using NH/FluentNH in web apps, domain model and repositories/services: <a href="http://mattias-jakobsson.net/Item/45/Building%20a%20forum%20application,%20Part%209" rel="nofollow">http://mattias-jakobsson.net/Item/45/Building%20a%20forum%20application,%20Part%209</a></p> http://stackoverflow.com/questions/1317431/best-practices-for-asp-net-mvc/1318816#1318816 6 Answer by Hrvoje for Best Practices for ASP.NET MVC Hrvoje 2009-08-23T15:32:42Z 2009-08-23T19:52:41Z <ol> <li>IoC/DI for Controller factory (so I can inject IRepository, ISomeService in controllers constructor)</li> <li>never access HttpContext directly, build wrapper, so it can be unit tested</li> <li>Validation framework for model binding validations (xVal or FluentValidation). Built-in validation inside MVC 1 is basic</li> <li>never use "magic strings": for calling controllers/actions from View, for RouteLink, RenderPartial, RenderAction, ...</li> <li>never use ViewData, build DTO ViewModel classes. Use AutoMapper for mapping data from domain entities to ViewModel DTO objects for View</li> </ol> <p>ViewModel DTO objects:<br /> BaseViewModel abstract class, with properties for rendering page meta data, menus and all other stuff that appears on every page. All other ViewModel classes inherits from BaseViewModel.</p> http://stackoverflow.com/questions/1318093/access-repository-through-service-or-directly/1318790#1318790 3 Answer by Hrvoje for Access Repository through Service or directly? Hrvoje 2009-08-23T15:14:31Z 2009-08-23T15:14:31Z <p>For smaller applications/webs, i tend not to use service layer, because it just maps Repositories methods 1:1, and I loose KISS. But in the end, it depends on business model; repository abstracts db access, and services encapsulates logic. </p> http://stackoverflow.com/questions/1310378/determining-image-file-size-dimensions-via-javascript/1310444#1310444 0 Answer by Hrvoje for Determining image file size + dimensions via Javascript? Hrvoje 2009-08-21T07:19:15Z 2009-08-21T07:19:15Z <p>Only way is though Flash app. Since 99% of PCs (mac, linux, win) have flash installed, it's allmost like JS :) Simple tutorial: <a href="http://blog.flexexamples.com/2008/08/25/previewing-an-image-before-uploading-it-using-the-filereference-class-in-flash-player-10/" rel="nofollow">http://blog.flexexamples.com/2008/08/25/previewing-an-image-before-uploading-it-using-the-filereference-class-in-flash-player-10/</a></p> http://stackoverflow.com/questions/1308285/website-development-in-asp-net-mvc-in-mono-or-make-the-break-to-php/1308336#1308336 1 Answer by Hrvoje for Website development in ASP.NET MVC in Mono or Make the break to PHP Hrvoje 2009-08-20T19:31:21Z 2009-08-20T19:31:21Z <p>Stick with technology that suits you the best, in which you are most productive. Don't switch just because of possible issues some day, LAMP for sure has it's own problems. </p> <p>If your web site has so much visitors that you must scale to one or several dedicated servers, then you should have money for licenses, IMHO. Shared hosting on win is aslo cheap, and with speed of win server 2008+mvc, you can be several times faster than LAMP, so hw costs are lower.</p> http://stackoverflow.com/questions/1186990/c-check-silverlight-object-size-at-runtime/1187044#1187044 1 Answer by Hrvoje for C# check silverlight object size at runtime Hrvoje 2009-07-27T08:22:25Z 2009-07-27T08:22:25Z <p>Or at least you can try with <a href="http://firstfloorsoftware.com/silverlightspy/download-silverlight-spy/" rel="nofollow">Silverlight Spy</a> to see total memory consumption.</p> http://stackoverflow.com/questions/1153147/one-sentence-explanation-to-mvvm-in-wpf/1153252#1153252 0 Answer by Hrvoje for One sentence explanation to MVVM in WPF? Hrvoje 2009-07-20T12:18:42Z 2009-07-20T12:18:42Z <p>I would say something like: "Presentation pattern for separation of concern between user interface and it's logic"</p> http://stackoverflow.com/questions/1148122/fastest-way-to-retrieve-store-millions-of-small-binary-objects/1148236#1148236 0 Answer by Hrvoje for Fastest way to retrieve/store millions of small binary objects Hrvoje 2009-07-18T18:34:37Z 2009-07-18T18:34:37Z <p>Did you considered to try object database, like <a href="http://www.db4o.com/" rel="nofollow">db4o</a>? It can persist any CLR objekt, and access them quickly with query language (supports LINQ!). I didn't have millions of objects, but with few thousands access was fairly quick, no major difference than similar SQL query with indexed id field. </p> http://stackoverflow.com/questions/690389/inject-different-object-to-constructor-with-structuremap-for-certain-case 2 Inject different object to constructor with StructureMap for certain case Hrvoje 2009-03-27T16:11:03Z 2009-07-15T20:18:51Z <p>I have IRepository&lt;T> , and implementation SqlRepository&lt;T>. SqlRepository has DataContext parameter in constructor.</p> <p>SM configuration looks like this: </p> <pre><code>x.ForRequestedType(typeof(IRepository&lt;&gt;)) .TheDefaultIsConcreteType(typeof(SqlRepository&lt;&gt;)); x.ForRequestedType&lt;DataContext&gt;().CacheBy(InstanceScope.Hybrid) .TheDefault.Is.ConstructedBy(()=&gt;{ var dc = new FirstDataContext(); dc.Log = new DebuggerWriter(); return dc; }); </code></pre> <p>But for construction of IRepository&lt;SpecificObject> i want to inject different DataContext. How do I say SM that when I ask for IReposiotry&lt;SpecificObject> I want different DataContext, not FirstDataContext but SecondDataContext (that DC goes to different database). </p> <p>For example, when I ask for IRepository&lt;T> I want FirstDataContext to be injected, but when I ask explicity for IRepository&lt;Product> I want SecondDataContext to be injected. </p> <p>Also, that SecondDC should be Hybrid cached by SM!</p> http://stackoverflow.com/questions/1094235/relative-path-in-masterpage-in-virtual-directory/1094286#1094286 1 Answer by Hrvoje for Relative path in MasterPage in virtual directory. Hrvoje 2009-07-07T19:24:24Z 2009-07-07T19:24:24Z <p>Use css class for styling. All classes put to separate css file and reference it in the master page file. Then path to images all always relative to location of css, and you don't have a problem with locations of aspx page!</p> http://stackoverflow.com/questions/973840/setting-up-ecommerce-in-asp-net/1058495#1058495 2 Answer by Hrvoje for Setting Up ECommerce in ASP.NET Hrvoje 2009-06-29T14:01:32Z 2009-06-29T14:01:32Z <p>You can also check out <a href="http://code.google.com/p/sutekishop/" rel="nofollow">SutekiShop</a>, simple open source e-commerce implementation of ASP.NET MVC. It contains good programming practices, so it's good for learning (agile/tdd/ddd/...) and simple enough to be modified or templated.</p> http://stackoverflow.com/questions/925895/combine-fields-from-joined-tables 1 Combine fields from joined tables Hrvoje 2009-05-29T13:16:44Z 2009-06-23T22:51:13Z <p>One category can have many products. I have to build StoredProcedure that returns all categories with some data from Products combined into one field: </p> <pre> SP Result: idCategory Name ProductNames ProductQuantities 1 Cat1 Procut1,Product2 24,32 2 Cat2 ProductX,ProductY 0,61 </pre> <p>ProductNames and ProductQuantities are varchar fields with combined (concatenated) field values from joined Product tables. This is what I have in DB:</p> <pre> Category table: idCategory Name 1 Cat1 2 Cat2 Product table: idProduct idCategory Name Quantity 1 1 Product1 24 2 1 Product2 32 3 2 ProductX 0 4 2 ProductY 61 </pre> <p>I would also like to have Function, that returns "Product1,Product2" for input parameter idCategory=1, like this:</p> <pre> SELECT idCategory, dbo.NamesFn(idCategory) AS ProductNames, dbo.QuantitiesFn(idCategory) AS ProductQuantities FROM Category </pre> <p>maybe one function that returns Table Result, so joining would be done only once, not in every Fn (because this is simplified example, in real app I have to have 4-5 combined fields, or even more in the future)?</p> <p>How to write that SQL / SP &amp; Fn? I'm using MS SQL2005</p> http://stackoverflow.com/questions/1014639/is-there-a-generic-way-to-get-a-linq2sql-entity-by-its-primary-key/1015217#1015217 2 Answer by Hrvoje for Is there a generic way to get a Linq2SQL Entity by its primary key? Hrvoje 2009-06-18T21:16:26Z 2009-06-18T21:16:26Z <p>I often use implementation of generic repository from Sutekishop, open source e-commerce web shop built with asp.net mvc and L2S.<br /> It has nice GetByID for generic type T, which relies on L2S attributes on model classes. This is the part that does the job: </p> <pre><code>public virtual T GetById(int id) { var itemParameter = Expression.Parameter(typeof(T), "item"); var whereExpression = Expression.Lambda&lt;Func&lt;T, bool&gt;&gt; ( Expression.Equal( Expression.Property( itemParameter, typeof(T).GetPrimaryKey().Name ), Expression.Constant(id) ), new[] { itemParameter } ); return GetAll().Where(whereExpression).Single(); } </code></pre> <p>and extension method that looks for primary key property; as you can see it expects "Column" attribute with "IsPrimaryKey" on class property. Extension methods: </p> <pre><code>public static PropertyInfo GetPrimaryKey(this Type entityType) { foreach (PropertyInfo property in entityType.GetProperties()) { if (property.IsPrimaryKey()) { if (property.PropertyType != typeof (int)) { throw new ApplicationException(string.Format("Primary key, '{0}', of type '{1}' is not int", property.Name, entityType)); } return property; } } throw new ApplicationException(string.Format("No primary key defined for type {0}", entityType.Name)); } public static TAttribute GetAttributeOf&lt;TAttribute&gt;(this PropertyInfo propertyInfo) { object[] attributes = propertyInfo.GetCustomAttributes(typeof(TAttribute), true); if (attributes.Length == 0) return default(TAttribute); return (TAttribute)attributes[0]; } public static bool IsPrimaryKey(this PropertyInfo propertyInfo) { var columnAttribute = propertyInfo.GetAttributeOf&lt;ColumnAttribute&gt;(); if (columnAttribute == null) return false; return columnAttribute.IsPrimaryKey; } </code></pre> <p>All credits for this code goes to <a href="http://mikehadlow.blogspot.com/" rel="nofollow">Mike Hadlow</a>! Whole implementation can be found in <a href="http://code.google.com/p/sutekishop/" rel="nofollow">sutekishop source</a></p> http://stackoverflow.com/questions/969984/amount-of-bytes-used-by-httpruntime-cache/970171#970171 1 Answer by Hrvoje for Amount of bytes used by HttpRuntime.Cache? Hrvoje 2009-06-09T13:42:44Z 2009-06-09T13:42:44Z <p>It's not programatically, but you can use CLR Profiler from Microsoft. Start profiler, from File menu choose Set Parameters and enter location of web and port (/port:55000 /path:"c:..."). Then you can start web server with "Start App" and by choosing WebDev.WebServer.exe.<br /> When web is started (it can feel slow when browsing pages!), and few pages opened (to fill cache or session), you can click on “Show Heap Now” and then click on "filter" and enter something like "system.web.caching" or "system.web.sessionstate".</p> http://stackoverflow.com/questions/914276/partial-postback-and-actions-on-client-side/914393#914393 0 Answer by Hrvoje for Partial PostBack and actions on client side Hrvoje 2009-05-27T07:21:19Z 2009-05-27T07:21:19Z <p>Maybe Cascading Dropdown control from Ajax control toolkit can help you:<br /> <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx" rel="nofollow">http://www.asp.net/AJAX/AjaxControlToolkit/Samples/CascadingDropDown/CascadingDropDown.aspx</a></p> http://stackoverflow.com/questions/727983/asp-net-treeview-performance/742178#742178 1 Answer by Hrvoje for ASP.NET TreeView performance Hrvoje 2009-04-12T18:36:25Z 2009-04-12T18:36:25Z <p>First, decide where you want to put your programming logic: for speed, it's better to use some other tree view control (that doesn't use table layout) and javascript framework to handle click events. I recommend using plain old ashx handler files for AJAX communication, they have less overhead than aspx and calling page methods. AJAX calls and results must contain only JSON or XML formatted data, not HTML.</p> <p>On the oher side, RAD tool like VS and TreeView control offers quick production of web application, but of course with some penalties: you need to go back to server to handle every click/select event, which draws issues with whole page life cycle processing and huge amount of data transfer for ajax calls (ViewState along with HTML are transferred from server to client for every ajax event). </p> <p>But if you want to stick with TreeView, i recommend:<br /> - CSS Friendly Control Adapter: they greatly reduce size of generated html (in my case, from 100kb to 20kb of html) and replace table layout with ul/li elements<br /> - Wrap TreeView inside ASP.NET AJAX UpdatePanel, but just treeview, and use conditional updates of panel. Don't be afraid to use several updatepanels<br /> - keep ViewState minimal</p> http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697746#697746 0 Answer by Hrvoje for ASP.Net Master Page and File path issues Hrvoje 2009-03-30T15:40:06Z 2009-03-30T15:40:06Z <p>You can also use &lt;base> HTML tag: </p> <pre><code>&lt;base href="http://www.domain.com"&gt;&lt;/base&gt; </code></pre> <p>and then all the links in header section are relative to base address: </p> <pre><code>&lt;script type="text/javascript" src="scripts/jquery.js"&gt;&lt;/script&gt; </code></pre> <p>It's often useful when you have multiple publishing destinations, like local dev web server, demo server, etc. You just replace that base URL.</p> http://stackoverflow.com/questions/687582/silverlight-and-a-form-application/687614#687614 2 Answer by Hrvoje for Silverlight and a form application Hrvoje 2009-03-26T21:29:31Z 2009-03-26T21:29:31Z <p>Just take a look at some videos over here:<br /> <a href="http://silverlight.net/learn/videocat.aspx?cat=2#HDI2WebServices" rel="nofollow">http://silverlight.net/learn/videocat.aspx?cat=2#HDI2WebServices</a><br /> basically, you build your data model with Linq (or some other orm), expose that data through Select/Update/Delete/... methods with web service (new WCF or old one, ASMX), and consume that in silverlight. Silverlight automatically make proxy classes for communication. In Silverlight, you can use it's rich databinding capabilities, so you do not need to worry about how data are transferred, serialized, read from UI and similar.<br /> Video tutorials on silverlight.net web explains most of stuff regarding programming SL2 really good. </p> http://stackoverflow.com/questions/686960/datatable-wrapper-or-how-to-decouple-ui-from-business-logic/687007#687007 0 Answer by Hrvoje for DataTable Wrapper or How to decouple UI from Business logic Hrvoje 2009-03-26T18:26:45Z 2009-03-26T18:26:45Z <p>Consider implementing MVP (model view presenter) pattern. It gives you separation of biz logic through presenter interface, which also allow better unit testing capabilities. Your codebehind of aspx page is then just connector of events and getter/setter of properties. You can find it in MS pattern&amp;practices enterprise application blocks (CAB - composite application block - if i'm not mistaking).<br /> You can read more about it here: <a href="http://msdn.microsoft.com/en-us/magazine/cc188690.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc188690.aspx</a><br /> But also going from DataTable/DataSets to objects (POCO) is preferred. </p> http://stackoverflow.com/questions/1839119/avoid-compiling-whole-asp-net-project/1840658#1840658 Comment by Hrvoje on avoid compiling whole asp.net project? Hrvoje 2009-12-07T21:09:18Z 2009-12-07T21:09:18Z that's correct. On first request site will be recompiled because new dll, or you can start precompile script on your own. http://stackoverflow.com/questions/1839616/online-document-editing-in-asp-net Comment by Hrvoje on Online Document Editing in ASP.NET Hrvoje 2009-12-03T15:22:03Z 2009-12-03T15:22:03Z PDF cannot be edited. Also, i dont think that there is client side tool for web page that can open and edit word files. You have to parse it on server, but that is also very difficult. Only option is FCKEditor, TinyMCE or similar. http://stackoverflow.com/questions/1662138/available-ram-on-shared-hosting-provider Comment by Hrvoje on Available RAM on shared hosting provider Hrvoje 2009-11-02T18:05:30Z 2009-11-02T18:05:30Z Each company has refrences to one or many other companies (many-to-many relation). I have recursive function in c# that goes through tree of companies (from parent to each child, and so on) and looks for some stuff. I need to query db when I want to get child companies. Maybe this all can be made in store procedure, but i'm not that good in SQL, and I'm triyng to keep my business logic in c# (DDD style app) http://stackoverflow.com/questions/727983/asp-net-treeview-performance/742178#742178 Comment by Hrvoje on ASP.NET TreeView performance Hrvoje 2009-11-02T12:11:16Z 2009-11-02T12:11:16Z There is workaround to get TreeView working inside UpdatePanel! http://stackoverflow.com/questions/1351256/usercontrol-visibility-binding-through-viewmodel/1563308#1563308 Comment by Hrvoje on UserControl Visibility binding through ViewModel Hrvoje 2009-10-14T15:33:52Z 2009-10-14T15:33:52Z example would be great http://stackoverflow.com/questions/1469298/how-to-plan-a-project/1481161#1481161 Comment by Hrvoje on How to plan a project... Hrvoje 2009-09-27T07:47:30Z 2009-09-27T07:47:30Z There's Summer of NHibernate, which is also great learning resource. http://stackoverflow.com/questions/1481311/how-do-i-insert-object-datatable-tablerow-ect-into-an-asp-net-webpage/1481807#1481807 Comment by Hrvoje on How do I insert object (datatable, tableRow ect...) into an asp.net webpage? Hrvoje 2009-09-26T21:53:52Z 2009-09-26T21:53:52Z go to the www.asp.net/learn, watch some videos and then ask questions http://stackoverflow.com/questions/1481311/how-do-i-insert-object-datatable-tablerow-ect-into-an-asp-net-webpage Comment by Hrvoje on How do I insert object (datatable, tableRow ect...) into an asp.net webpage? Hrvoje 2009-09-26T15:23:07Z 2009-09-26T15:23:07Z you cannot just put object to aspx. You need to tell how do you want to render properties of object, and for that you have gridview, datalist and similar controls. http://stackoverflow.com/questions/1431473/asp-net-putting-dynamic-controls-on-page-in-reverse-messes-up-events/1431621#1431621 Comment by Hrvoje on ASP.NET putting dynamic controls on page in reverse messes up events Hrvoje 2009-09-16T14:24:11Z 2009-09-16T14:24:11Z Well, all input elements on form are not deserialised in OnInit event, so I use Request.Form[&quot;ctl00_txtInput&quot;] for reading text boxes. But &quot;ctl00_....._txtInput&quot; is not recommented because prefix &quot;ctl00_...&quot; can change, accourding to position of you text box. You can use it just for testing, and you can find the name by looking at HTML of you rendered page. Also, I recomment building helper method, that iterates through key-value pairs inside Request.Form, and search for &quot;txtUserInput&quot; inside key, and returns its value! I can post code, if you wish. http://stackoverflow.com/questions/1426491/how-to-load-images-after-page-load-completed-in-asp-net Comment by Hrvoje on How to Load images after page load completed in ASP.Net Hrvoje 2009-09-15T11:23:16Z 2009-09-15T11:23:16Z client side or server side tag generation? Why AJAX? http://stackoverflow.com/questions/1351256/usercontrol-visibility-binding-through-viewmodel/1352397#1352397 Comment by Hrvoje on UserControl Visibility binding through ViewModel Hrvoje 2009-08-31T07:02:02Z 2009-08-31T07:02:02Z tried, but still binding doesn't work, it hides only when I set property through codebehind http://stackoverflow.com/questions/1317431/best-practices-for-asp-net-mvc/1318816#1318816 Comment by Hrvoje on Best Practices for ASP.NET MVC Hrvoje 2009-08-23T19:55:17Z 2009-08-23T19:55:17Z @jan: i think it's SO best practices to have one answer, which every one can edit and improve http://stackoverflow.com/questions/1317431/best-practices-for-asp-net-mvc/1318816#1318816 Comment by Hrvoje on Best Practices for ASP.NET MVC Hrvoje 2009-08-23T15:34:55Z 2009-08-23T15:34:55Z sorry i didn't put one best practice per answer, i couldn't choose one ;) http://stackoverflow.com/questions/1014639/is-there-a-generic-way-to-get-a-linq2sql-entity-by-its-primary-key/1015217#1015217 Comment by Hrvoje on Is there a generic way to get a Linq2SQL Entity by its primary key? Hrvoje 2009-06-19T06:16:42Z 2009-06-19T06:16:42Z well yes, i didn't quite understood your question so I focused on title. If hope, at least, this code would help someday! http://stackoverflow.com/questions/969509/how-to-make-user-persist-between-sessions/971488#971488 Comment by Hrvoje on How to make user persist between sessions? Hrvoje 2009-06-09T17:46:32Z 2009-06-09T17:46:32Z I would really like to see explanation of that! I tought that cookie and IsolatedStorage are the only way to store information about user between two sessions.