User igor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:18:21Z http://stackoverflow.com/feeds/user/109344 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1031597/how-to-make-usercontrol-to-use-master-page-placeholders 0 How to make UserControl to use master page placeholders? igor 2009-06-23T09:47:40Z 2009-11-13T21:00:16Z <p>Hello all.</p> <p>There's quite weird issue and I wonder if it had ever occurred before. It looks odd that nobody had been caught by it, by Google says so.</p> <p>that's what we have:</p> <p>Master page</p> <p>Masterpage.master</p> <p> blahblagblag</p> <p>User control whose page is bound to mentioned-above master page</p> <p>According design, we need to define from .ascx user control</p> <pre><code>SomeControl.ascx &lt;asp:Content ContentPlaceHolderID="phMaster"&gt; // this will not work, and issue is to make it work </code></pre> <p>But how to do it, considering that user controls cannot be bound to masterpage?</p> <p>Any ideas?</p> http://stackoverflow.com/questions/882488/gridview-server-events-ceased-to-fire 0 Gridview server events ceased to fire. igor 2009-05-19T12:35:59Z 2009-09-08T13:00:01Z <p>There's the usual Gridview with template column</p> <pre><code>&lt;ItemTemplate&gt; "lbOpen" Text='Select' runat="server" OnCommand="lbOpen_Command" CommandName="open" CommandArgument='&lt;%# DataBinder.Eval(Container.DataItem, "OrderID") %&gt;' /&gt; </code></pre> <p>Unexpectedly and by unknown reason "lbOpen_Command" ceased to fire. After stop at page OnInit() breakpoint at "lbOpen_Command" does not hit. There were no even a least changes to .aspx page and event execution chain.</p> <p>What can be the reason? Any suggestions?</p> <p>thanks in advance.</p> http://stackoverflow.com/questions/1171601/cannot-change-gridview-caption 0 cannot change GridView Caption igor 2009-07-23T13:11:24Z 2009-07-23T13:17:41Z <p>It seems to be impossible to change GridView .Caption after it has been set once.</p> <p>Once I set caption and then change it within postbacks, in the code all seem to be ok, on page PreRender, GridView PreRender and wherever </p> <p>I have no idea what to do - on page (and GridView also) PreRender event while debugging the .Caption is proper, but it renders with old caption anyway</p> <p>Page seems to be render with set-once caption although I changed it.</p> <p>I even tried to place it to updatePanel and update it, but it didn't help.</p> <p>Can anybody suggest the reason? thanks in advance.</p> http://stackoverflow.com/questions/1092655/construct-object-from-linq-using-same-fields-of-another-query 0 Construct object from LINQ using same fields of another query igor 2009-07-07T14:27:14Z 2009-07-07T14:56:09Z <p>Hello all</p> <p>That's example</p> <p>SQL</p> <pre><code>create view v_join as select m.* , d.oneDetail from master m, detail d where m.key = d.key </code></pre> <p>LINQ</p> <pre><code>var view = from v in dc.v_join select new { Master = ???? /// that is an issue, how can I construct the objects using same fields but from another query, Detail = v.oneDetail }; foreach (var entry in view) { Master mEntry = entry.Master; // then we can use it, there are no problems } </code></pre> <p>This situation meets rather often and is there some tricky way to construct the object using same fields but from another view, and uses.</p> <p>When I make such join at C#-side, I get low performance, issues with lazy loads etc. And anyway LINQ issues many queries to fetch each detail record, is is inacceptible at the performance point of view.</p> <p>There must be obvious solution, I cannot believe nobody faced same problem. All obvious solutions like dc.Translate do almost same but not exactly what I need.</p> <p>Help appreciated.</p> http://stackoverflow.com/questions/1032400/object-does-not-retrieves-from-viewstate 0 Object does not retrieves from viewstate igor 2009-06-23T12:54:29Z 2009-06-23T13:04:35Z <p>I am about to gone mad why? why? why?</p> <p>protected void Page_Load(object sender, EventArgs e) { AttachedPartnersViewState vs = ViewState[SessionVariables.Company_AttachedPartnersViewState] as AttachedPartnersViewState;</p> <pre><code>protected override void OnUnload(EventArgs e) { ViewState[SessionVariables.Company_AttachedPartnersViewState] = _viewState; </code></pre> <p>whatever I do. however I try to save this Viewstate, it seems to be ok on unload. then, as page is loading, it is NULL again, it DOESN'T retrieves despite page is on postback.</p> <p>this is elementary action, but why it doesn't work?</p> <p>BTW, control's EnableViewstate is true</p> <p>Are there any explanations?</p> http://stackoverflow.com/questions/882488/gridview-server-events-ceased-to-fire/883315#883315 0 Answer by igor for Gridview server events ceased to fire. igor 2009-05-19T15:04:38Z 2009-05-19T15:04:38Z <p>Solved by adding implicit gridview .Databind() command. Thanks to all.</p> http://stackoverflow.com/questions/1171601/cannot-change-gridview-caption/1171646#1171646 Comment by igor on cannot change GridView Caption igor 2009-07-23T14:23:53Z 2009-07-23T14:23:53Z The code is rather long but that's the relevant part It calls from page_load There are no other assignments to .Caption in the whole code dgPublications.Caption = string.Format(&quot;Order# {0} product types&quot;, _currentOrderID); dgOrderContent.Caption = _currentPubID.HasValue ? string.Format(&quot;{0} content&quot;, Dictionaries.GetInstance(((MDSPage)this.Page).Database).PublicationIDs[_currentPubID.Value]) : string.Format(&quot;Order # {0} content&quot;, _currentOrderID); dgOrderContent.DataBind(); http://stackoverflow.com/questions/1092655/construct-object-from-linq-using-same-fields-of-another-query/1092736#1092736 Comment by igor on Construct object from LINQ using same fields of another query igor 2009-07-07T15:08:39Z 2009-07-07T15:08:39Z it will cause problems when I would try to share dataContext or use external one. Exception will be thrown. http://stackoverflow.com/questions/1092655/construct-object-from-linq-using-same-fields-of-another-query/1092821#1092821 Comment by igor on Construct object from LINQ using same fields of another query igor 2009-07-07T15:07:20Z 2009-07-07T15:07:20Z Obvious approach, but I'd like to avoid explicit construction. http://stackoverflow.com/questions/1092655/construct-object-from-linq-using-same-fields-of-another-query/1092711#1092711 Comment by igor on Construct object from LINQ using same fields of another query igor 2009-07-07T14:47:08Z 2009-07-07T14:47:08Z I tried such approach, judging on that further processing of result is extremely slow, I suppose LINQ issues separate query to fetch each detail record http://stackoverflow.com/questions/1092655/construct-object-from-linq-using-same-fields-of-another-query/1092691#1092691 Comment by igor on Construct object from LINQ using same fields of another query igor 2009-07-07T14:45:32Z 2009-07-07T14:45:32Z Yes, exactly, but I want to avoid construct each field manually http://stackoverflow.com/questions/1032400/object-does-not-retrieves-from-viewstate/1032452#1032452 Comment by igor on Object does not retrieves from viewstate igor 2009-06-23T14:44:01Z 2009-06-23T14:44:01Z Thanks, I more or less aware what is nature of this error ) I try to save class which functionally is container for carrying my data through postback. It contains only 3 Lists&lt;&gt; and 1 int. But when I do the same via Session instead of Viewstate (just replace ViewState with Session), it serializes and retrieves without errors, that is strange. The only way I see now is use the session instead, though it is not quite logically right at the design point of view. anyway, such behavior of viewstate still be strange and make me warned for its further use, http://stackoverflow.com/questions/1032400/object-does-not-retrieves-from-viewstate/1032452#1032452 Comment by igor on Object does not retrieves from viewstate igor 2009-06-23T13:53:09Z 2009-06-23T13:53:09Z Thanks I tried to go such way before, but before render it causes tremendous error . It occurs not while passing through line in that I save object to viewstate (debugger passed that line ok), but when page is rendered (it seems so). Exception of type 'System.Web.HttpUnhandledException' was thrown. --- Error serializing value 'MDSWebApp.Controls.AttachedPartners+AttachedPartnersViewState' of type 'MDSWebApp.Controls.AttachedPartners+AttachedPartnersViewState.' http://stackoverflow.com/questions/882488/gridview-server-events-ceased-to-fire/882528#882528 Comment by igor on Gridview server events ceased to fire. igor 2009-05-19T13:02:57Z 2009-05-19T13:02:57Z It might be a reason. Grid databinding is called implicitly (it uses LinqDataSource.OnSelecting events - BTW, I also have issues with them, the queries are time-consuming and fires several times within page lifecycle, I had to use the tricks to cut off redundant calls) Explicit .Databind() is not called in my case