<?xml version='1.0' encoding='utf-8' ?>
<!--  If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/  -->
<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/'>
<channel>
  <title>Microsoft .NET and all related stuff</title>
  <link>http://community.livejournal.com/ms_dot_net/</link>
  <description>Microsoft .NET and all related stuff - LiveJournal.com</description>
  <lastBuildDate>Mon, 11 Aug 2008 16:55:54 GMT</lastBuildDate>
  <generator>LiveJournal / LiveJournal.com</generator>
  <lj:journal>ms_dot_net</lj:journal>
  <lj:journaltype>community</lj:journaltype>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/6834.html</guid>
  <pubDate>Mon, 11 Aug 2008 16:55:54 GMT</pubDate>
  <title>Accessing an XML-RPC service</title>
  <link>http://community.livejournal.com/ms_dot_net/6834.html</link>
  <description>I&apos;m trying to access an &lt;a href=&quot;http://www.xmlrpc.com/&quot;&gt;XML-RPC&lt;/a&gt; service from C# that I&apos;m building. I&apos;ve had absolutely no response from &lt;a href=&quot;http://tech.groups.yahoo.com/group/XMLRPCNET/messages/1072?threaded=1&amp;amp;m=e&amp;amp;var=1&amp;amp;tidx=1&quot;&gt;my message on the XML-RPC.net YahooGroup&lt;/a&gt;, so I started looking at the only other .Net XML-RPC class library out there: &lt;a href=&quot;http://opaque.ods.org/XmlRpcCS/&quot;&gt;XmlRpcCS&lt;/a&gt;, which is only confusing me further.&lt;br /&gt;&lt;br /&gt;The cause of my problems appears to be that &lt;a href=&quot;http://www.xml-rpc.net/&quot;&gt;XML-RPC.Net&lt;/a&gt; seems to require all its proxy objects to be structs. I, however, would like to use class objects, so I can add other functionality into the classes (constructors, the ability to have properties that are masked from the XML-RPC output and so on).&lt;br /&gt;&lt;br /&gt;Now if this were XML serialisation, I would use the &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/83y7df3e.aspx&quot;&gt;attributes that control XML serialisation&lt;/a&gt;, such as &lt;code&gt;[&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlignoreattribute.aspx&quot;&gt;XmlIgnore&lt;/a&gt;]&lt;/code&gt;. Without rewriting half of the class library, though (which would seem to defeat the purpose of using it!), I can&apos;t do something like that.&lt;br /&gt;&lt;br /&gt;Does anyone here have any experience of using an XML-RPC library for .Net?&lt;br /&gt;&lt;br /&gt;&lt;small&gt;(Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;csharp&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/csharp/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/csharp/&apos;&gt;&lt;b&gt;csharp&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.)&lt;/small&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/6834.html</comments>
  <lj:music>Með suð í eyrum við spilum endalaust — Sigur Rós</lj:music>
  <lj:mood>frustrated</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>owenblacker</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/6520.html</guid>
  <pubDate>Thu, 02 Aug 2007 16:30:23 GMT</pubDate>
  <title>Possible .Net regex bug?</title>
  <link>http://community.livejournal.com/ms_dot_net/6520.html</link>
  <description>&lt;p&gt;For reasons too dull to explain, I’m trying to use regular expressions to postprocess an HTML-stream.  I want to find all anchor (&lt;code style=&quot;font-family: Consolas, Lucida Console, Courier New, Courier, monospace;&quot;&gt;&amp;lt;a/&amp;gt;&lt;/code&gt;) tags that link within our site, in this case using the domain name.&lt;/p&gt;

&lt;p&gt;My regular expression looks right to me, but .Net is convinced I don’t have enough close-parentheses.  I’ve added line breaks for clarity:&lt;/p&gt;

&lt;pre style=&quot;border: dotted 1px #333; padding: 0.5em; background: #eee; color: black; font-family: Consolas, Lucida Console, Courier New, Courier, monospaced;&quot;&gt;   (?&amp;lt;=&amp;lt;a[^&amp;gt;]* href=[&apos;&quot;]?)
   (?&amp;lt;before&amp;gt;https?://[a-z0-9.-]*uswitch\.[a-z]+/[-\w_,.%/~]+)
   (?&amp;lt;querystring&amp;gt;\??[-\w&amp;=~]*)
   (?&amp;lt;fragment&amp;gt;#?[-\w&amp;=~]*)
   (?=[&apos;&quot;]?[^&amp;gt;]*&amp;gt;)&lt;/pre&gt;

&lt;p&gt;I’ve tested both the above code with the line breaks removed and the original code (which is compiled with &lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.text.regularexpressions.regexoptions.aspx&quot;&gt;RegexOptions.IgnorePatternWhitespace&lt;/a&gt; and has embedded comments for ease of maintenance.  Each time, I get a &lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.text.regularexpressions.regexoptions.aspx&quot;&gt;System.ArgumentException&lt;/a&gt;: &lt;code style=&quot;font-family: Consolas, Lucida Console, Courier New, Courier, monospace;&quot;&gt;parsing &quot;...&quot; - Not enough )&apos;s&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Despite that I’m quite certain they’re perfectly matched.&lt;/p&gt;

&lt;p&gt;Anyone?&lt;/p&gt;

&lt;p style=&quot;font-size: smaller;&quot;&gt;Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;regexp&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/regexp/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/regexp/&apos;&gt;&lt;b&gt;regexp&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/6520.html</comments>
  <lj:music>Elton John — Rocket Man</lj:music>
  <lj:mood>frustrated</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>owenblacker</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/6250.html</guid>
  <pubDate>Tue, 20 Mar 2007 10:42:32 GMT</pubDate>
  <title>http://xmlia.com</title>
  <link>http://community.livejournal.com/ms_dot_net/6250.html</link>
  <description>&lt;font size=&quot;4&quot;&gt;Dear friends! &lt;br /&gt;We are glad to you to inform on opening new, absolutely free-of-charge site about &lt;b&gt;&lt;a href=&quot;http://xmlia.com/&quot;&gt;&lt;b&gt;online XML-validator and web-based editor&lt;/b&gt;&lt;/a&gt;.&lt;/b&gt; &lt;br /&gt;&lt;br /&gt;For what to pay huge money for different win-based editors or to put the unchecked cracked copies?&lt;br /&gt;Use our site, and you should not install anything on computer. &lt;br /&gt;Our site does not contain advertising, is quickly loaded,consumes not enough traffic and quickly processes your data. &lt;br /&gt;At your service XML visualisation not only in the form of TREE, but also in the form of GRID, that is actually avaliable only in very expensive windows XML editors.&lt;br /&gt;&lt;br /&gt;all what you need to do-its just register for free&lt;br /&gt;&lt;br /&gt;See you in &lt;a href=&quot;http://xmlia.com/&quot;&gt;&lt;strong&gt;http://xmlia.com&lt;/strong&gt;&lt;/a&gt;&lt;/font&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/6250.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>xmliacom</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/5919.html</guid>
  <pubDate>Tue, 13 Mar 2007 15:01:53 GMT</pubDate>
  <title>Quick rant before my meeting</title>
  <link>http://community.livejournal.com/ms_dot_net/5919.html</link>
  <description>&lt;p&gt;Why is it that Microsoft appear to be completely incapable of writing decent code and documenting it?&lt;/p&gt;

&lt;p&gt;I&apos;m trying to work with SharePoint 2007 for a project at work. The developer textbooks haven&apos;t yet been published (and the release dates have recently been pushed back), so all I have to rely on is the MSDN Library&apos;s documentation of the API.&lt;/p&gt;

&lt;p&gt;So when I see method descriptions like this (&lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.webcontrols.basefieldcontrol.registerfieldcontrol.aspx&quot;&gt;BaseFieldControl.RegisterFieldControl&lt;/a&gt;, fuck only knows what it does), I get pretty pissed off.&lt;/p&gt;

&lt;p&gt;So I gave some feedback:&lt;/p&gt;

&lt;blockquote style=&quot;font-style: italic; margin: auto 1em; border-left: solid 2px green; padding-left: 1em;&quot;&gt;
&lt;p&gt;This is a public API, that developers need to access to work with SharePoint. Why on earth is there absolutely no documentation on some of these properties and methods?&lt;/p&gt;

&lt;p&gt;Ridiculously poor; if one of my developers passed it to me for QA, I would have failed it and sent them to go do it all again, whilst hanging their head in shame.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I wonder if anyone will actually ever read it.&lt;/p&gt;

&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://owenblacker.livejournal.com/54218.html&quot;&gt;Cross-posted&lt;/a&gt; to &lt;span class=&apos;ljuser&apos; lj:user=&apos;owenblacker&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/&apos;&gt;&lt;b&gt;owenblacker&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/small&gt;&lt;/p&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/5919.html</comments>
  <lj:music>Feeder — Forget about Tomorrow</lj:music>
  <lj:mood>pissed off</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>owenblacker</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/5709.html</guid>
  <pubDate>Fri, 02 Mar 2007 12:08:11 GMT</pubDate>
  <title>Technical Analysis API</title>
  <link>http://community.livejournal.com/ms_dot_net/5709.html</link>
  <description>Hello! Can anyone point me in the direction of a &lt;b&gt;free&lt;/b&gt; .NET API for technical analysis? Thanks.</description>
  <comments>http://community.livejournal.com/ms_dot_net/5709.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>nesteruk</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/5563.html</guid>
  <pubDate>Thu, 11 Jan 2007 16:56:46 GMT</pubDate>
  <title>FastFourier Transforms</title>
  <link>http://community.livejournal.com/ms_dot_net/5563.html</link>
  <description>Hello again :-)&lt;br /&gt;&lt;br /&gt;Can anyone recommend a .Net FFT library that doesn&apos;t do anything with imaginary numbers, into which I can throw an Array of Int16 being a WaveForm and get out an Array of Int16 of the same size being the FFT analysis? Inverse FFT would be a nice feature, too.</description>
  <comments>http://community.livejournal.com/ms_dot_net/5563.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>madkatsjournal</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/5220.html</guid>
  <pubDate>Tue, 09 Jan 2007 10:29:33 GMT</pubDate>
  <title>More VB.Net aimed, but someone might be able to help...</title>
  <link>http://community.livejournal.com/ms_dot_net/5220.html</link>
  <description>This is cross-posted elsewhere.&lt;br /&gt;&lt;br /&gt;Can anyone point me in the right direction for enumerating the Classes within my Assembly, and then enumerating the Members of those Classes?&lt;br /&gt;&lt;br /&gt;The plan is this:&lt;br /&gt;I&apos;m using a very lightweight database engine (SQLite - specifically, the System.Data.SQLite wrapper which is fantastic - you can also link it with your binary, Google for ILMerge)&lt;br /&gt;What I want to do is to write a number of Classes which inherit from a generic Database Table Base Class. The Base Class has a Method called SelfCheck. This Method (called on all Classes which inherit from the Base Class at startup) checks the table in the database against the Members of the Class, and takes action if there is a mismatch. The action may be to CREATE TABLE, or to rebuild the table with any extra columns which were missing. This allows for a quick, simple &amp; transparent upgrade path for the end user, and means I (or others in the future) won&apos;t have to keep messing about with table generation scripts.</description>
  <comments>http://community.livejournal.com/ms_dot_net/5220.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>madkatsjournal</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/5073.html</guid>
  <pubDate>Sun, 07 Jan 2007 19:13:03 GMT</pubDate>
  <link>http://community.livejournal.com/ms_dot_net/5073.html</link>
  <description>For those who are interested in DotNetNuke ASP.NET content management system have a look at new site &lt;a href=&quot;http://www.olegzhukov.com&quot;&gt;www.olegzhukov.com&lt;/a&gt; (&lt;a href=&quot;http://www.olegzhukov.com/content&quot;&gt;www.olegzhukov.com/content&lt;/a&gt;) The author is going to write articles on DotNetNuke and other .NET - related topics. Welcome to all :)</description>
  <comments>http://community.livejournal.com/ms_dot_net/5073.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>westy704</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/4772.html</guid>
  <pubDate>Sat, 07 Oct 2006 09:44:39 GMT</pubDate>
  <link>http://community.livejournal.com/ms_dot_net/4772.html</link>
  <description>Hi, i&apos;m just a student, so don&apos;t be too strict ;)&lt;br /&gt;I have a problem using a DataGrid in my VB.NET application.&lt;br /&gt;So, what&apos;s the problem?&lt;br /&gt;I have a DataGrid, it&apos;s DataSource is set to a DataView which gets data from a DataSet, connected to MS SQL DB through SQLDataAdapter.&lt;br /&gt;So, I need to add and edit entries in my DataGrid, applying this changes to my  database...&lt;br /&gt;So, how can I do it (I mean applying my changes)?&lt;br /&gt;&lt;br /&gt;x-posted</description>
  <comments>http://community.livejournal.com/ms_dot_net/4772.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>katty_kat</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/4423.html</guid>
  <pubDate>Mon, 21 Aug 2006 12:17:22 GMT</pubDate>
  <link>http://community.livejournal.com/ms_dot_net/4423.html</link>
  <description>The issue I have encountered with is that while writing the web service on c# one of the parameters of the method that should be used is a array of structure. The issue is actually that the client written on ColdFusion doesn’t see my method and while launching it crashes it and displays the error. &quot;&lt;b&gt;Web service operation &quot;test&quot; with parameters {t2={{A={[{PRICE={12},NAME={Myname}}]}}}} could not be found. &lt;/b&gt;&quot;&lt;br /&gt;&lt;br /&gt;My question is what is the right way to declare the variables in the web service? (It is not advisable to change the client as I’m writing the web service for the client and not vice verse.)&lt;br /&gt;&lt;br /&gt;&lt;a name=&quot;cutid1&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;pre&gt;
&lt;b&gt;Client:&lt;/b&gt;
&amp;lt; cfscript&amp;gt;
  a = ArrayNew(1);
  t=structNew();
  t.price = 12;
  t.name  = &quot;Myname&quot;;
  a[1] = t;
  t2=structNew();
  t2.a = a;
&amp;lt; /cfscript&amp;gt;
&amp;lt; cfinvoke webservice=&quot;http://localhost:2851/test/Service21.asmx?WSDL&quot; method=&quot;test&quot; returnvariable=&quot;wsResult&quot;&amp;gt;
&amp;lt; cfinvokeargument name=&quot;t2&quot; value=#t2#/&amp;gt;
&amp;lt; /cfinvoke&amp;gt;
&amp;lt; cfoutput&amp;gt;#wsResult#&amp;lt; /cfoutput&amp;gt;

&lt;b&gt;WebService&lt;/b&gt;:

[SoapTypeAttribute(Namespace = &quot;http://dts&quot;)]
public class postback_response
{
    public double crl_id;
    public double resp_code;
    public string resp_message;
}
[SoapTypeAttribute(Namespace = &quot;http://dts&quot;)]
public struct test_c2
{
    public test_c[] a;
}
[SoapTypeAttribute(Namespace = &quot;http://dts&quot;)]
public class test_c
{
    public double price;
    public string name;
}

    [WebMethod(), SoapRpcMethod(Use = System.Web.Services.Description.SoapBindingUse.Literal)]
    public postback_response test(test_c2 t2)
    {

        postback_response response = new postback_response();
        response.crl_id = 1;
        response.resp_code = 0;
        response.resp_message = &quot;test&quot;;
        return response;
    }&lt;/pre&gt;&lt;br /&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/4423.html</comments>
  <lj:music>Vinnickaya Alena - Izmuchennoe serdce (Gorchitza Remix)</lj:music>
  <lj:security>public</lj:security>
  <lj:poster>_villain_</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/4126.html</guid>
  <pubDate>Wed, 19 Jul 2006 14:32:56 GMT</pubDate>
  <title>Databinding methods such as Eval(), XPath(), and Bind() …</title>
  <link>http://community.livejournal.com/ms_dot_net/4126.html</link>
  <description>&lt;p&gt;I&apos;ve spent loads of time Googling to try to work this one out and I&apos;m
sure it&apos;s something obvious.&lt;/p&gt;

&lt;p&gt;I get an &lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.invalidoperationexception.aspx&quot;&gt;InvalidOperationException&lt;/a&gt; reading &quot;&lt;em&gt;Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control&lt;/em&gt;&quot; when I start my page.  Unless I&apos;m missing something obvious, this is &lt;strong&gt;not&lt;/strong&gt; the same issue as the &quot;&lt;a href=&quot;http://www.webswapp.com/codesamples/aspnet20/dependentlists/default.aspx&quot;&gt;2-way databinding cascading lists&lt;/a&gt;&quot; issue (which is linked from everywhere; I kinda wish that were my problem ;o)&lt;/p&gt;

&lt;p&gt;I have a templated databound custom server control, that I&apos;ve built with a great deal of help from the two articles by &lt;a href=&quot;http://www.4guysfromrolla.com/&quot;&gt;4GuysFromRolla&lt;/a&gt;&apos;s &lt;a href=&quot;http://www.4guysfromrolla.com/ScottMitchell.shtml&quot;&gt;Scott Mitchell&lt;/a&gt; (&lt;a href=&quot;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/ASPNet-BuildTemplatedSrvrCntrls.asp&quot;&gt;1&lt;/a&gt;, &lt;a href=&quot;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/databoundtemplatedcontrols.asp&quot;&gt;2&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;I don&apos;t seem to be able to use databinding syntax, however:&lt;/p&gt;

&lt;pre style=&quot;border: dotted 1px #333; background: #eee; color: black; font-family: Consolas, Lucida Console, Courier New, Courier, monospaced&quot;&gt;   &amp;lt;ItemTemplate&amp;gt;
      &amp;lt;asp:TableCell runat=&quot;server&quot;&amp;gt;&amp;lt;%# &lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/acxb7xys.aspx&quot;&gt;Eval&lt;/a&gt;(&quot;&lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.web.ui.pair.first.aspx&quot;&gt;First&lt;/a&gt;&quot;) %&amp;gt;&amp;lt;/asp:TableCell&amp;gt;
      ...
   &amp;lt;/ItemTemplate&amp;gt;&lt;/pre&gt;

bound to a &lt;span&gt;&lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/6sh2ey19.aspx&quot;&gt;List&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.web.ui.pair.aspx&quot;&gt;Pair&lt;/a&gt;&amp;gt;&lt;/span&gt; gives me an exception:

&lt;pre style=&quot;border: dotted 1px #333; background: #eee; color: black; font-family: Consolas, Lucida Console, Courier New, Courier, monospaced&quot;&gt;[InvalidOperationException: Databinding methods such as Eval(), XPath(),
and Bind() can only be used in the context of a databound control.]
   System.Web.UI.Page.GetDataItem() +90
   System.Web.UI.TemplateControl.Eval(String expression) +110
   ASP.owentest_aspx.__DataBind__control8(Object sender, EventArgs e) in
      c:\Projects\Customisation\RedesignProtoTypeWeb\Owentest.aspx:13
   System.Web.UI.Control.OnDataBinding(EventArgs e) +80
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +198
   System.Web.UI.Control.DataBind() +12
   System.Web.UI.Control.DataBindChildren() +214
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +208
   System.Web.UI.Control.DataBind() +12
   System.Web.UI.Control.DataBindChildren() +214
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +208
   System.Web.UI.Control.DataBind() +12
   uSwitch.Web.UI.Lego.RepeatingInputRow.CreateItem(Int32 rowIndex,
      Table container, Boolean useDataBinding, Object rowData) in
      C:\Projects\uSwitch.Web\UI.Lego\InputModule\RepeatingInputRow.cs:361
   uSwitch.Web.UI.Lego.RepeatingInputRow.CreateControlHierarchy(Boolean
      useDataBinding) in
      C:\Projects\uSwitch.Web\UI.Lego\InputModule\RepeatingInputRow.cs:452
   uSwitch.Web.UI.Lego.RepeatingInputRow.DataBind() in
      C:\Projects\uSwitch.Web\UI.Lego\InputModule\RepeatingInputRow.cs:643
   Owentest.Page_Load(Object sender, EventArgs e) in
      c:\Projects\Customisation\RedesignProtoTypeWeb\Owentest.aspx.cs:20
   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object
      o, Object t, EventArgs e) +13
   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object
      sender, EventArgs e) +45
   System.Web.UI.Control.OnLoad(EventArgs e) +80
   System.Web.UI.Control.LoadRecursive() +49
   System.Web.UI.Page.ProcessRequestMain(Boolean
      includeStagesBeforeAsyncPoint, Boolean
      includeStagesAfterAsyncPoint) +3716&lt;/pre&gt;

&lt;p&gt;I don&apos;t get the exception if my databinding control is outside the table cell but, for a handful of other reasons, including that my &lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.web.ui.itemplate.aspx&quot;&gt;ItemTemplate&lt;/a&gt; is being instantiated inside a &lt;a href=&quot;http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.tablerow.aspx&quot;&gt;TableRow&lt;/a&gt;, that won&apos;t work for me.&lt;/p&gt;

&lt;p&gt;Any ideas gratefully received, as I&apos;m completely lost. If you don&apos;t want to leave thoughts as a comment on here, feel free to email me (owenblacker at uswitch dot com). Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;owenblacker&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/&apos;&gt;&lt;b&gt;owenblacker&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and &lt;span class=&apos;ljuser&apos; lj:user=&apos;ms_dot_net&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/ms_dot_net/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/ms_dot_net/&apos;&gt;&lt;b&gt;ms_dot_net&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/4126.html</comments>
  <lj:music>Quallofill — Paper Dress</lj:music>
  <lj:mood>too hot and irritable</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>owenblacker</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/4070.html</guid>
  <pubDate>Wed, 24 May 2006 13:29:41 GMT</pubDate>
  <title>FYI - new resource:</title>
  <link>http://community.livejournal.com/ms_dot_net/4070.html</link>
  <description>www.iis.net</description>
  <comments>http://community.livejournal.com/ms_dot_net/4070.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>level42</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/3813.html</guid>
  <pubDate>Mon, 08 May 2006 01:29:40 GMT</pubDate>
  <title>Website forms</title>
  <link>http://community.livejournal.com/ms_dot_net/3813.html</link>
  <description>I&apos;m making a client-side application that monitors the status of a website and reports what it finds. I have that part working, but now I need to add the ability to have my application automatically submit information through a form on the site (textboxes and submit button style.) I have no clue how to do this, any suggestions?&lt;br /&gt;&lt;br /&gt;Thanks</description>
  <comments>http://community.livejournal.com/ms_dot_net/3813.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>mc_funkymcmeep</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/3526.html</guid>
  <pubDate>Wed, 19 Apr 2006 18:31:12 GMT</pubDate>
  <title>myspace.com is hiring .NET developers!</title>
  <link>http://community.livejournal.com/ms_dot_net/3526.html</link>
  <description>They are hiring developers like crazy! Email your resume to myspacejobs@yahoo.com.&lt;br /&gt;&lt;br /&gt;&lt;a name=&quot;cutid1&quot;&gt;&lt;/a&gt;Job description: .Net Developer-ASP.Net and C# (1.1 and 2.0)&lt;br /&gt;&lt;br /&gt;Social Networking is one of the hottest sectors on the web in recent years. MySpace.com has emerged as the definitive leader in this space and is the 2nd highest trafficked site on the Internet. MySpace has 210 employees and is in rapid growth mode.&lt;br /&gt;&lt;br /&gt;The .NET Team at MySpace.com focuses on performance and scalability to a degree that most developers have never had a chance to experience.&lt;br /&gt;&lt;br /&gt;Required Skills/Experience:&lt;br /&gt;- 2+ years of solid C# experience&lt;br /&gt;- 2+ years of ASP.NET (and the .NET 1.1 Framework) experience&lt;br /&gt;- 2+ years of experience developing with SQL Server 2000 (including stored procedures)&lt;br /&gt;- Strong knowledge of .NET Remoting (including HTTP and TCP/IP) and UDP&lt;br /&gt;- a solid foundation in n-tier, Business Objects, Design Patterns, and general OOP&lt;br /&gt;- Strong knowledge (and wisdom) of IIS6 and it&apos;s internals&lt;br /&gt;- Experience on sites under heavy loads that require meticulous attention to coding practices as they relate to performance and scalability&lt;br /&gt;&lt;br /&gt;Preferred but not required Experience:&lt;br /&gt;- Microsoft Pattern and Practice Team&apos;s Enterprise Application Blocks&lt;br /&gt;- Agile Software Development (including Extreme Programming)&lt;br /&gt;- Microsoft Application Center Test&lt;br /&gt;- LLBLGen&lt;br /&gt;- NUnit&lt;br /&gt;- nANT&lt;br /&gt;- Visual Studio 2005 (including Team System)&lt;br /&gt;- ASP.NET 2.0, ADO.NET 2.0, AJAX (Atlas), and the .NET 2.0 Framework&lt;br /&gt;- SQL Server 2005 feature set, enhancements, and changes that effect developers&lt;br /&gt;- ReSharper &amp; dotTrace (from JetBrains) </description>
  <comments>http://community.livejournal.com/ms_dot_net/3526.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>spice_of_life</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/3218.html</guid>
  <pubDate>Sun, 09 Apr 2006 06:22:49 GMT</pubDate>
  <title>Reading a book on ADO.NET - highly recommended.</title>
  <link>http://community.livejournal.com/ms_dot_net/3218.html</link>
  <description>&lt;quote&gt;&lt;br /&gt;When developers design systems, much of their time is focused on making sure that a particular piece of functionality can be accomplished. If we finish our design at the point where we can get the functionality to work, however, we are doomed to fail. Let me tell you a story from my past where I was more worried about the functionality than the performance.&lt;br /&gt;&lt;br /&gt;Some years back I was charged with writing some code to enable doctors using a pen computer to pick a medication for a prescription. I wanted the doctors to be able to pick from any drug so I thought, simple: create a list box with all the drugs. I wrote the database queries, the screens, and the reports that would shoot out prescriptions on a printer for the doctor. Everything worked end to end on my machine.&lt;br /&gt;&lt;br /&gt;The day I released it to the testers I was excited to watch it work for them, so I camped myself in the QA lab for the day. I was expecting to be available to field questions about the application, but they got to my screen and it seemed like it froze up. The hourglass cursor just sat there, mocking me. We gave up after a few minutes. I was perplexed.&lt;br /&gt;&lt;br /&gt;That night, QA forgot to reboot one of the pen systems and left it running overnight. Surprisingly, the next day they brought me one of the units and showed me that the screen was up. As I played with the screen, I noticed that all the drugs had names starting with the letter &apos;A&apos;. When I tried to move the scrollbar, it froze up again. I asked the QA people how many drugs were in the database. They answered, &quot;About twelve thousand, why?&quot; &quot;Oh,&quot; I replied. I had tested with 40.&lt;br /&gt;&lt;br /&gt;I ended up changing the list box to a grid that could page and load only the drugs that could be shown on the screen at one time. What did I learn that day? I learned that understanding the capacity of a system is crucial to finding the right solution. So, should you worry? Of course you should.&lt;br /&gt;&lt;/quote&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;hopefully, the author won&apos;t sue me for this :-)&lt;br /&gt;&lt;br /&gt;The book is &quot;Pragmatic ADO.NET: Data Access for the Internet World&quot;&lt;br /&gt;by Shawn Wildermuth</description>
  <comments>http://community.livejournal.com/ms_dot_net/3218.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>level42</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/2931.html</guid>
  <pubDate>Tue, 14 Feb 2006 01:55:37 GMT</pubDate>
  <title>anyone dabble in dotnetnuke?</title>
  <link>http://community.livejournal.com/ms_dot_net/2931.html</link>
  <description>Just trying to surround myself with people that are doing the same stuff as me..</description>
  <comments>http://community.livejournal.com/ms_dot_net/2931.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>terramayfield</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/2632.html</guid>
  <pubDate>Mon, 06 Feb 2006 04:21:48 GMT</pubDate>
  <title>Cursor position</title>
  <link>http://community.livejournal.com/ms_dot_net/2632.html</link>
  <description>I&apos;m trying to basically make a simple notepad app in C# .NET and I want to display the cursor position, but I can&apos;t figure out a property or event to get it to work. Any suggestions? Thanks</description>
  <comments>http://community.livejournal.com/ms_dot_net/2632.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>mc_funkymcmeep</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/2422.html</guid>
  <pubDate>Mon, 30 Jan 2006 17:54:26 GMT</pubDate>
  <title>HttpCachePolicy in an IHttpModule</title>
  <link>http://community.livejournal.com/ms_dot_net/2422.html</link>
  <description>&lt;p&gt;I&apos;m having some trouble sorting out image caching for JPEGs that are served through an &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebIHttpModuleClassTopic.asp&quot;&gt;IHttpModule&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;A quirk of the site I&apos;m working on at the moment is that product images are served via a third-party image hosting provider (&lt;a href=&quot;http://www.scene7.com/&quot;&gt;Scene7&lt;/a&gt;, who have been very helpful and so deserve a credit).  In order to save having to reference the URI stem all over our code, I wrote an IHttpModule that parses all requests on the basis of:&lt;/p&gt;

&lt;pre style=&quot;border: dotted 1px #333; background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpContextClassTopic.asp&quot;&gt;HttpContext&lt;/a&gt; context = ((&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpApplicationClassTopic.asp&quot;&gt;HttpApplication&lt;/a&gt;) sender).&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpApplicationClassContextTopic.asp&quot;&gt;Context&lt;/a&gt;;
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpRequestClassTopic.asp&quot;&gt;HttpRequest&lt;/a&gt; request = &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpContextClassRequestTopic.asp&quot;&gt;context.Request&lt;/a&gt;;

   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemTextRegularExpressionsRegexClassTopic.asp&quot;&gt;Regex&lt;/a&gt; r = &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemtextregularexpressionsregexclassctortopic3.asp&quot;&gt;new Regex&lt;/a&gt;(
      @&quot;/images/products/(?&amp;lt;sku&amp;gt;[A-Z0-9-]+)_(?&amp;lt;size&amp;gt;\d)\.jpg&quot;,
      &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemTextRegularExpressionsRegexOptionsClassTopic.asp&quot;&gt;RegexOptions.Compiled | RegexOptions.IgnoreCase&lt;/a&gt;);
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemTextRegularExpressionsMatchClassTopic.asp&quot;&gt;Match&lt;/a&gt; m = &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemTextRegularExpressionsRegexClassMatchTopic1.asp&quot;&gt;r.Match&lt;/a&gt;(&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpRequestClassRawUrlTopic.asp&quot;&gt;request.RawUrl&lt;/a&gt;);

   if (&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemtextregularexpressionsgroupclasssuccesstopic.asp&quot;&gt;m.Success&lt;/a&gt; &amp;amp;&amp;amp; &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpRequestClassHttpMethodTopic.asp&quot;&gt;request.HttpMethod&lt;/a&gt; == &quot;GET&quot;)
   {
      &lt;em style=&quot;color: #333;&quot;&gt;// Handle the Scene7-specific stuff&lt;/em&gt;
   }
   else
   {
      &lt;em style=&quot;color: #333;&quot;&gt;// Set cacheability&lt;/em&gt;
   }
&lt;/pre&gt;

&lt;p&gt;Before I was doing anything in this else clause, &lt;a href=&quot;http://www.fiddlertool.com/&quot;&gt;Fiddler&lt;/a&gt; was showing me that the following headers were being sent with all non-Scene7 JPEGs:&lt;/p&gt;

&lt;pre style=&quot;border: dotted 1px #333; background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;
   &lt;a href=&quot;http://www.freesoft.org/CIE/RFC/2068/193.htm&quot;&gt;Pragma&lt;/a&gt;: no-cache
   &lt;a href=&quot;http://www.freesoft.org/CIE/RFC/2068/164.htm&quot;&gt;Cache-Control&lt;/a&gt;: no-cache
   Pragma: no-cache
   &lt;a href=&quot;http://www.freesoft.org/CIE/RFC/2068/182.htm&quot;&gt;Expires&lt;/a&gt;: -1
&lt;/pre&gt;

&lt;p&gt;Now, if I add the following two lines to my else clause:&lt;/p&gt;

&lt;pre style=&quot;border: dotted 1px #333; background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpCachePolicyClassTopic.asp&quot;&gt;HttpCachePolicy&lt;/a&gt; cache = &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpContextClassResponseTopic.asp&quot;&gt;context.Response&lt;/a&gt;.&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpResponseClassCacheTopic.asp&quot;&gt;Cache&lt;/a&gt;;
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemwebhttpcachepolicyclasssetallowresponseinbrowserhistorytopic.asp&quot;&gt;cache.SetAllowResponseInBrowserHistory&lt;/a&gt;(true);
&lt;/pre&gt;

&lt;p&gt;it gets rid of the &lt;code style=&quot;background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;Expires: -1&lt;/code&gt; header.  Adding any / all of the following, though, won&apos;t shift the &lt;code style=&quot;background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;Pragma:&lt;/code&gt; and &lt;code style=&quot;background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;Cache-Control:&lt;/code&gt; headers &amp;mdash; they all seem to have no effect on my actual HTTP transaction, so it&apos;s still not being cached properly:&lt;/p&gt;

&lt;pre style=&quot;border: dotted 1px #333; background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemwebhttpcachepolicyclasssetcacheabilitytopic.asp&quot;&gt;cache.SetCacheability&lt;/a&gt;(&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpCacheabilityClassTopic.asp&quot;&gt;HttpCacheability.Public&lt;/a&gt;);
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemwebhttpcachepolicyclasssetmaxagetopic.asp&quot;&gt;cache.SetMaxAge&lt;/a&gt;(new &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemtimespanclasstopic.asp&quot;&gt;TimeSpan&lt;/a&gt;(30, 0, 0, 0));
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemwebhttpcachepolicyclasssetexpirestopic.asp&quot;&gt;cache.SetExpires&lt;/a&gt;(&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemdatetimeclassnowtopic.asp&quot;&gt;DateTime.Now&lt;/a&gt;.&lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemdatetimeclassadddaystopic.asp&quot;&gt;AddDays&lt;/a&gt;(30));
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemwebhttpcachepolicyclasssetlastmodifiedfromfiledependenciestopic.asp&quot;&gt;cache.SetLastModifiedFromFileDependencies&lt;/a&gt;();
   &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemwebhttpcachepolicyclasssetvaliduntilexpirestopic.asp&quot;&gt;cache.SetValidUntilExpires&lt;/a&gt;(true);
&lt;/pre&gt;

&lt;p&gt;Does anyone have any real experience with setting &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebHttpCachePolicyClassTopic.asp&quot;&gt;HttpCachePolicy&lt;/a&gt; properties from within an IHttpModule?  Am I missing something really obvious?&lt;/p&gt;

&lt;p&gt;If you don&apos;t want to leave thoughts as a comment on here, feel free to email me (owen dot blacker at wheel dot co dot uk). Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;owenblacker&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/&apos;&gt;&lt;b&gt;owenblacker&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and &lt;span class=&apos;ljuser&apos; lj:user=&apos;ms_dot_net&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/ms_dot_net/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/ms_dot_net/&apos;&gt;&lt;b&gt;ms_dot_net&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;

&lt;p&gt;Thanks everyone!&lt;/p&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/2422.html</comments>
  <lj:music>Fleetwood Mac — The Chain</lj:music>
  <lj:mood>Google is not my friend :o(</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>owenblacker</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/2109.html</guid>
  <pubDate>Thu, 19 Jan 2006 04:19:14 GMT</pubDate>
  <title>In Search of Free .NET based CMS</title>
  <link>http://community.livejournal.com/ms_dot_net/2109.html</link>
  <description>I&apos;m looking for a free CMS based on .NET. &lt;br /&gt;What are my options?&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;&lt;br /&gt;p.s. important - it should be written in C#, not in VB.NET.</description>
  <comments>http://community.livejournal.com/ms_dot_net/2109.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>level42</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/1989.html</guid>
  <pubDate>Thu, 19 Jan 2006 03:52:50 GMT</pubDate>
  <title>Design change</title>
  <link>http://community.livejournal.com/ms_dot_net/1989.html</link>
  <description>Hi everybody,&lt;br /&gt;I changed the design for our community.&lt;br /&gt;Hope you all like it.&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;br /&gt;&lt;br /&gt;:-)</description>
  <comments>http://community.livejournal.com/ms_dot_net/1989.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>level42</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/1738.html</guid>
  <pubDate>Sun, 08 Jan 2006 23:35:00 GMT</pubDate>
  <link>http://community.livejournal.com/ms_dot_net/1738.html</link>
  <description>My school officially teaches Java, but one of my required courses was a &quot;logic&quot; class which used Visual Basic.NET. After taking a semester of both I have decided I much prefer the .NET platform than Java.&lt;br /&gt;&lt;br /&gt;The logic/VB.net class only covered the first eight chapters of this book, &lt;a href=&quot;http://www.course.com/catalog/product.cfm?category=Programming&amp;subcategory=Microsoft%20Visual%20Basic.NET&amp;isbn=0-619-16010-1&quot;&gt;http://www.course.com/catalog/product.cfm?category=Programming&amp;subcategory=Microsoft%20Visual%20Basic.NET&amp;isbn=0-619-16010-1&lt;/a&gt;, but I decided I would finish reading it on my own. I have, and now I&apos;m interested in continuing to learn more .NET programming (and I&apos;ll have to do it on my own since that class was the only non-Java class my school teaches.)&lt;br /&gt;&lt;br /&gt;I’ll be switching to Visual Studio.NET 2005 and .NET 2.0, and I would like to get into some C# programming as well. I also know PHP, Java, and some C++, so I’m not a programming newbie.&lt;br /&gt;&lt;br /&gt;What books would you suggest to continue from here?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Also, my school suggests that Java is the big language to learn. However, many people outside the school suggest that Java is starting to take a back seat to the .NET platform. What&apos;s the truth of the industry? What should I try to learn if I want to get work? (Keeping in mind that I&apos;m not very fond of website development.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks</description>
  <comments>http://community.livejournal.com/ms_dot_net/1738.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>mc_funkymcmeep</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/1514.html</guid>
  <pubDate>Mon, 02 Jan 2006 16:50:29 GMT</pubDate>
  <link>http://community.livejournal.com/ms_dot_net/1514.html</link>
  <description>I have been browsing the Microsoft ASP.NET Development Center and trying to introduce myself to .NET and Visual Studio. Unfortunately I have a laptop with ME on it. Is it absolutely unavoidable that I will have to get XP instead in order to run these software programs? Where do I really start? The Microsoft Web site is confusing me.</description>
  <comments>http://community.livejournal.com/ms_dot_net/1514.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>_lilnikki_</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/1137.html</guid>
  <pubDate>Sat, 03 Dec 2005 06:31:53 GMT</pubDate>
  <title>DLL Management Code?</title>
  <link>http://community.livejournal.com/ms_dot_net/1137.html</link>
  <description>I&apos;ve been asked to find some sort of program, or better yet some code (and even better in Visual Basic of some variety) that will (I think) check the DLLs and their versions that are being loaded against what the program is expecting, or something similar (sorry, it wasn&apos;t made very clear.)&lt;br /&gt;&lt;br /&gt;Any suggestions? Thanks</description>
  <comments>http://community.livejournal.com/ms_dot_net/1137.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>mc_funkymcmeep</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/798.html</guid>
  <pubDate>Fri, 09 Sep 2005 21:28:53 GMT</pubDate>
  <title>woo-hoo....</title>
  <link>http://community.livejournal.com/ms_dot_net/798.html</link>
  <description>(sorry for a slightly outdated info).&lt;br /&gt;Passed my 70-315 (ASP.NET with C#) exam with a score of 924... 4 more to go.&lt;br /&gt;&lt;br /&gt;p.s. found an interesting link: &lt;a href=&quot;http://philip.greenspun.com/bboard/q-and-a-fetch-msg?msg_id=000tcP&quot;&gt;http://philip.greenspun.com/bboard/q-and-a-fetch-msg?msg_id=000tcP&lt;/a&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/798.html</comments>
  <lj:security>public</lj:security>
  <lj:poster>level42</lj:poster>
</item>
<item>
  <guid isPermaLink='true'>http://community.livejournal.com/ms_dot_net/616.html</guid>
  <pubDate>Tue, 16 Aug 2005 12:07:47 GMT</pubDate>
  <title>Re: UserControl output into an XmlNode</title>
  <link>http://community.livejournal.com/ms_dot_net/616.html</link>
  <description>&lt;p&gt;A continuation of my awkward question for any C# geeks reading.&lt;/p&gt;

&lt;p&gt;Ok, I don&apos;think I&apos;m gonna find a convenient way to do it the way I&apos;d hoped, so I&apos;ve started thinking about rendering the control into a &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemiostreamclasstopic.asp&quot;&gt;Stream&lt;/a&gt; and &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemxmlxmldocumentclassloadtopic.asp&quot;&gt;XmlDocument.Load&lt;/a&gt;-ing that Stream into my &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemxmlxmlnodeclasstopic.asp&quot;&gt;XmlNode&lt;/a&gt; hierarchy.&lt;/p&gt;

&lt;p&gt;Except I&apos;m not getting anything out using &lt;a href=&quot;http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebUIControlClassRenderControlTopic.asp&quot;&gt;Control.RenderControl(HtmlTextWriter)&lt;/a&gt;:&lt;/p&gt;

&lt;pre style=&quot;border: dotted 1px #333; background: #eee; color: black; font: Lucida Console, Courier New, Courier, monospace;&quot;&gt;
   public XmlDocument RenderXmlDocument()
   {
      MemoryStream stream = new MemoryStream();
   
      this.RenderControl(new HtmlTextWriter(new StreamWriter(stream)));
   
      byte[] streamContents = stream.ToArray();
      System.Text.StringBuilder sb = new System.Text.StringBuilder();
   
      foreach (byte tmp in streamContents)
         sb.Append(Convert.ToChar(tmp));
   
      HttpContext.Current.Trace.Write(&quot;EditSectionOrAsset&quot;,
         &quot;Rendered control as \n\n[&quot; + sb.ToString() + &quot;]&quot;);
   
      XmlDocument control = new XmlDocument();
      control.Load(new XmlTextReader(new StreamReader(stream)));
   
      return control;
   }
&lt;/pre&gt;

&lt;p&gt;and nothing is getting written to the Trace.&lt;/p&gt;

&lt;p&gt;Am I gonna have to work out how to do this without using the control?&lt;/p&gt;

&lt;p&gt;Any and all suggestions gratefully received. Cross-posted to &lt;span class=&apos;ljuser&apos; lj:user=&apos;owenblacker&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://owenblacker.livejournal.com/&apos;&gt;&lt;b&gt;owenblacker&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, &lt;span class=&apos;ljuser&apos; lj:user=&apos;csharp&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/csharp/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/csharp/&apos;&gt;&lt;b&gt;csharp&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and &lt;span class=&apos;ljuser&apos; lj:user=&apos;ms_dot_net&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://community.livejournal.com/ms_dot_net/profile&apos;&gt;&lt;img src=&apos;http://p-stat.livejournal.com/img/community.gif&apos; alt=&apos;[info]&apos; width=&apos;16&apos; height=&apos;16&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://community.livejournal.com/ms_dot_net/&apos;&gt;&lt;b&gt;ms_dot_net&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</description>
  <comments>http://community.livejournal.com/ms_dot_net/616.html</comments>
  <lj:music>Jack Johnson — Do you Remember?</lj:music>
  <lj:mood>pissed off</lj:mood>
  <lj:security>public</lj:security>
  <lj:poster>owenblacker</lj:poster>
</item>
</channel>
</rss>
