<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Entries for yman</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/yman/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for yman</title><link>http://channel9.msdn.com/Niners/yman/</link></image><description>Entries, comments and threads posted by yman</description><link>http://channel9.msdn.com/Niners/yman/</link><language>en-us</language><pubDate>Thu, 23 Aug 2007 14:15:07 GMT</pubDate><lastBuildDate>Thu, 23 Aug 2007 14:15:07 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>GCSE Results. [GCSE Results.]</title><description>It's that time of year again in the UK, when all 16 year olds receive their GCSE Results.&lt;br&gt;&lt;br&gt;Overall I did "ok":&lt;br&gt;&lt;br&gt;Maths: B (A little bit disappointed but I did seriously mess-up the completion exam so I guess it's respectable.)&lt;br&gt;&lt;br&gt;English: A (Would have been an A* but I answered about the wrong character in a question :|)&lt;br&gt;&lt;br&gt;Science Double: A* A*&lt;br&gt;&lt;br&gt;ICT Double: A* A* (I know, it's ICT, a monkey could probably pass).&lt;br&gt;&lt;br&gt;Journalism (an interesting new course which I took in favour of English Literature. Nonetheless it wasn't a walk in the park and was rigorous.): A&lt;br&gt;&lt;br&gt;Learning for Life &amp;amp; Work (soon-to-be a mandatory subject. My school had the grace to force it on us regardless. A nice PC exam; thanks New Labour): A*&lt;br&gt;&lt;br&gt;RE Short: B (going to get it remarked as it was a high B)&lt;br&gt;&lt;br&gt;Geography: B (again an extremely high B which will be remarked.)&lt;br&gt;&lt;br&gt;Business Communication Systems (I didn't even take it as a class. I just revised the revision books!): A*&lt;br&gt;&lt;br&gt;French Short: D (well, ehmm, it's only french)&lt;br&gt;&lt;br&gt;&lt;br&gt;edit: added some breaklines.&lt;br&gt;&lt;br&gt;edit: oops, I got two A* A* in Science Double!&lt;br&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/257168-GCSE-Results/'&gt;GCSE Results.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257168/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/257168-GCSE-Results/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/257168-GCSE-Results/</link><pubDate>Thu, 23 Aug 2007 14:15:07 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/257168-GCSE-Results/</guid><evnet:views>8441</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257168/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>It's that time of year again in the UK, when all 16 year olds receive their GCSE Results.&lt;br&gt;&lt;br&gt;Overall I did "ok":&lt;br&gt;&lt;br&gt;Maths: B (A little bit disappointed but I did seriously mess-up the completion exam so I guess it's respectable.)&lt;br&gt;&lt;br&gt;English: A (Would have been an A* but I answered about the wrong character in a question &lt;img src='/emoticons/C9/emotion-8.gif' alt='Expressionless' /&gt;)&lt;br&gt;&lt;br&gt;Science Double: A* A*&lt;br&gt;&lt;br&gt;ICT Double: A* A* (I know, it's ICT, a monkey could probably pass).&lt;br&gt;&lt;br&gt;Journalism (an interesting new course which I took in favour of English Literature. Nonetheless it wasn't a walk in the park and was rigorous.): A&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>22</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/257168-GCSE-Results/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257168/Trackback.aspx</trackback:ping></item><item><title>Finding Accurate Averages [Finding Accurate Averages]</title><description>First off, I must admit I am not a maths guy, so please be gentle if I am talking a load of rubbish :)&lt;br&gt;&lt;br&gt;I am working on a new community social networking site (not another one you say? Don't worry, it's quite original and all will be revealed in time.) which allows users to rate each piece of content in x series of categories with a value from 1 to 10. &lt;br&gt;&lt;br&gt;I need a way to accurately work-out the overall average value for each category. However, I am aware (thanks GCSE coursework) that the arithmetic average (add up all sums and divide by the frequency of numbers) can be "poisoned" or affected with outliers, extreme values.&lt;br&gt;I need a way to accurately determine the overall average but also taking into account each users "voting weight". Say one user had a voting rate percentage of 100%, their rate would take more weight than someone with a voting weight percentage of 10%. I would like the voting rate to be determined from the overall average for a category when calculated. Say I rated the content in the category with a value of 1 and when calculated the overall average of all votes is 9, I would like my voting percentage to decrease. This is vulnerable to people collaborating and systematically increasing their voting weight, however I am sure I can do some checking to detect such behavior.&lt;br&gt;&lt;br&gt;I first thought of removing extreme values by arranging all values in ascending order and subtracting one from each other thus allowing me to get a list of the increasing amount. I imagined I could then remove extreme increasing amounts therefore meaning I could take extreme answers away. But after that I seemed to go around in circles trying different methods.&lt;br&gt;&lt;br&gt;Anyone have any ideas how to calculate this?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/257087-Finding-Accurate-Averages/'&gt;Finding Accurate Averages&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/257087/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/257087-Finding-Accurate-Averages/</comments><link>http://channel9.msdn.com/forums/TechOff/257087-Finding-Accurate-Averages/</link><pubDate>Sun, 19 Aug 2007 16:50:42 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/257087-Finding-Accurate-Averages/</guid><evnet:views>7930</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/257087/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>First off, I must admit I am not a maths guy, so please be gentle if I am talking a load of rubbish &lt;img src='/emoticons/C9/emotion-1.gif' alt='Smiley' /&gt;&lt;br&gt;&lt;br&gt;I am working on a new community social networking site (not another one you say? Don't worry, it's quite original and all will be revealed in time.) which allows users to rate each piece of content in x series of categories with a value from 1 to 10. &lt;br&gt;&lt;br&gt;I need a way to accurately work-out the overall average value for each category. However, I am aware (thanks GCSE coursework) that the arithmetic average (add up all sums and divide by the frequency of numbers) can be "poisoned" or affected with outliers, extreme values.&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>16</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/257087-Finding-Accurate-Averages/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/257087/Trackback.aspx</trackback:ping></item><item><title>Dals and Datatables. [Dals and Datatables.]</title><description>I am in search of clarity and confirmation on whether I am implementing my web applications properly.&lt;br&gt;&lt;br&gt;Currently, I obviously use a three tier architecture: gui, business and data. My business layer returns entity classes which my gui layer consumes. &lt;br&gt;The question is, is it ok for the Dal layer to return DataTables which the business layer subsequently uses to populate corresponding entity classes with? I originally chose this pattern as I reasoned that it clearly seperates the layers, data and business. It also makes it easy for my web apps to be db independent as the Dal layer is normally implemented as a pluggable interface or derived class. Is this ok? Or should the Dal layer actually return the entity classes? If so would the business layer simply have wrappers around the direct Dal methods when entity classes need to be exposed, e.g "User[] GetUsers()". &lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/256027-Dals-and-Datatables/'&gt;Dals and Datatables.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/256027/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/256027-Dals-and-Datatables/</comments><link>http://channel9.msdn.com/forums/TechOff/256027-Dals-and-Datatables/</link><pubDate>Fri, 06 Jul 2007 02:33:31 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/256027-Dals-and-Datatables/</guid><evnet:views>9558</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/256027/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am in search of clarity and confirmation on whether I am implementing my web applications properly.Currently, I obviously use a three tier architecture: gui, business and data. My business layer returns entity classes which my gui layer consumes. The question is, is it ok for the Dal layer to return DataTables which the business layer subsequently uses to populate corresponding entity classes with? I originally chose this pattern as I reasoned that it clearly seperates the layers, data and business. It also makes it easy for my web apps to be db independent as the Dal layer is normally&amp;#8230;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>20</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/256027-Dals-and-Datatables/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/256027/Trackback.aspx</trackback:ping></item><item><title>Re: Why do some people not like .Net framework. [Why do some people not like .Net framework.]</title><description>Will they be pushing .NET 3 through automatic updates to XP users?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/250303-Why-do-some-people-not-like-Net-framework/'&gt;Why do some people not like .Net framework.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/344525/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments></comments><link></link><pubDate>Mon, 27 Nov 2006 13:46:09 GMT</pubDate><guid isPermaLink="false"></guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/344525/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Will they be pushing .NET 3 through automatic updates to XP users?in reply to Why do some people not like .Net framework.</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/344525/Trackback.aspx</trackback:ping></item><item><title>Release EvNet's Codebase :) [Release EvNet's Codebase :)]</title><description>&lt;p&gt;Considering the lack of good CMS/Forums systems for Asp.net, would you ever consider opening the hood of your codebase, Jeff, Adam?&lt;br&gt;&lt;br&gt;You wouldn't have to worry about support; just throw up the source and the SQL db scheme in a zip.... I am sure we all can figure out some wiki support for you ;)&lt;br&gt;&lt;br&gt;Come on.... open the&amp;nbsp;code :D&lt;/p&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/244148-Release-EvNets-Codebase-/'&gt;Release EvNet's Codebase :)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/244148/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/244148-Release-EvNets-Codebase-/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/244148-Release-EvNets-Codebase-/</link><pubDate>Wed, 25 Oct 2006 20:34:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/244148-Release-EvNets-Codebase-/</guid><evnet:views>8698</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/244148/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;p&gt;Considering the lack of good CMS/Forums systems for Asp.net, would you ever consider opening the hood of your codebase, Jeff, Adam?&lt;br&gt;&lt;br&gt;You wouldn't have to worry about support; just throw up the source and the SQL db scheme in a zip.... I am sure we all can figure out some wiki support for you &lt;img src='/emoticons/C9/emotion-5.gif' alt='Wink' /&gt;&lt;br&gt;&lt;br&gt;Come on.... open the&amp;nbsp;code &lt;img src='/emoticons/C9/emotion-2.gif' alt='Big Smile' /&gt;&lt;/p&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/244148-Release-EvNets-Codebase-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/244148/Trackback.aspx</trackback:ping></item><item><title>on10 1.0 up (C9 future forums engine) [on10 1.0 up (C9 future forums engine)]</title><description>Seems like the team has finally pushed up the new &lt;a href="http://www.on10.net"&gt;on10&lt;/a&gt; site. I am not bothered with the content of the site (I find the videos tiresome to watch), but I am interested in the technology which they have used. &lt;br&gt;&lt;br&gt;The forums do look quite pleasant, but I hope in C9 3.0, the width of the displayed threads will be wider. &lt;br&gt;&lt;br&gt;&lt;br&gt;ps, team, you are flagging null reference errors in places.&lt;br&gt;It also looks like you are not using the new web application compilation method, you are use the default asp.net one. I know you may have it up there for debug, but you could think about using the VS 2003 way.&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;It doesn't look like you display the thread view count, do you keep a copy of it in the db though? I think C9 should have a thread view count.&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;No emoticons!&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;I am getting access denied JS errors when accessing ajax stuff in IE. Are you accessing cross domain stuff, maybe?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/212259-on10-10-up-C9-future-forums-engine/'&gt;on10 1.0 up (C9 future forums engine)&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/212259/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/212259-on10-10-up-C9-future-forums-engine/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/212259-on10-10-up-C9-future-forums-engine/</link><pubDate>Wed, 19 Jul 2006 10:02:22 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/212259-on10-10-up-C9-future-forums-engine/</guid><evnet:views>23439</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/212259/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Seems like the team has finally pushed up the new &lt;a href="http://www.on10.net"&gt;on10&lt;/a&gt; site. I am not bothered with the content of the site (I find the videos tiresome to watch), but I am interested in the technology which they have used. &lt;br&gt;&lt;br&gt;The forums do look quite pleasant, but I hope in C9 3.0, the width of the displayed threads will be wider. &lt;br&gt;&lt;br&gt;&lt;br&gt;ps, team, you are flagging null reference errors in places.&lt;br&gt;It also looks like you are not using the new web application compilation method, you are use the default asp.net one. I know you may have it up there for debug, but you could think about using the VS 2003 way.&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>27</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/212259-on10-10-up-C9-future-forums-engine/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/212259/Trackback.aspx</trackback:ping></item><item><title>Determine if in quotes? [Determine if in quotes?]</title><description>I am writing a parser in C# and I need to know if a certain phrase exists in an expression but outside any quotes. I was thinking of firstly getting the position of the phrase/char using IndexOf, then I would loop through the whole expression and just keep track whether a quote is open or has been closed.&lt;br&gt;&lt;br&gt;Anyone have a better idea?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/211169-Determine-if-in-quotes/'&gt;Determine if in quotes?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/211169/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/211169-Determine-if-in-quotes/</comments><link>http://channel9.msdn.com/forums/TechOff/211169-Determine-if-in-quotes/</link><pubDate>Sun, 16 Jul 2006 14:53:00 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/211169-Determine-if-in-quotes/</guid><evnet:views>7480</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/211169/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am writing a parser in C# and I need to know if a certain phrase exists in an expression but outside any quotes. I was thinking of firstly getting the position of the phrase/char using IndexOf, then I would loop through the whole expression and just keep track whether a quote is open or has been closed.&lt;br&gt;&lt;br&gt;Anyone have a better idea?&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/211169-Determine-if-in-quotes/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/211169/Trackback.aspx</trackback:ping></item><item><title>IE Operation Aborted? [IE Operation Aborted?]</title><description>I am developing an ajax web app. I work against FireFox and then test it against IE, normally much later. &lt;br&gt;The app works fine in FF, all the xmlhttp requests work etc. But when I try it in IE I am just prompted with an "Operation Aborted" message half way into the initial page load. It loads about half of the page and then just fires the message.&lt;br&gt;&lt;br&gt;Any ideas of how to debug this or determine why it would flag this error?&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;This behaviour is present in IE6 and IE7... not just the betas&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/210214-IE-Operation-Aborted/'&gt;IE Operation Aborted?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/210214/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/210214-IE-Operation-Aborted/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/210214-IE-Operation-Aborted/</link><pubDate>Thu, 13 Jul 2006 15:19:48 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/210214-IE-Operation-Aborted/</guid><evnet:views>45941</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/210214/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am developing an ajax web app. I work against FireFox and then test it against IE, normally much later. &lt;br&gt;The app works fine in FF, all the xmlhttp requests work etc. But when I try it in IE I am just prompted with an "Operation Aborted" message half way into the initial page load. It loads about half of the page and then just fires the message.&lt;br&gt;&lt;br&gt;Any ideas of how to debug this or determine why it would flag this error?&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;This behaviour is present in IE6 and IE7... not just the betas&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>23</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/210214-IE-Operation-Aborted/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/210214/Trackback.aspx</trackback:ping></item><item><title>Interview Request [Interview Request]</title><description>I wouldn't mind seeing an interview involving the guys who designed live.com. I know the live mail team is in CA, don't know about the live.com team. If they are in CA, never mind.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/208786-Interview-Request/'&gt;Interview Request&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/208786/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/208786-Interview-Request/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/208786-Interview-Request/</link><pubDate>Mon, 10 Jul 2006 10:04:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/208786-Interview-Request/</guid><evnet:views>7179</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/208786/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I wouldn't mind seeing an interview involving the guys who designed live.com. I know the live mail team is in CA, don't know about the live.com team. If they are in CA, never mind.&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/208786-Interview-Request/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/208786/Trackback.aspx</trackback:ping></item><item><title>SQL Server CAL licensing question [SQL Server CAL licensing question]</title><description>If you have a SQL server which is licensed on a user CAL basis and you are using it as the db for your asp.net web app, would you need a CAL for the amount of users accessing your asp.net app per second?&amp;nbsp; &lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/208610-SQL-Server-CAL-licensing-question/'&gt;SQL Server CAL licensing question&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/208610/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/208610-SQL-Server-CAL-licensing-question/</comments><link>http://channel9.msdn.com/forums/TechOff/208610-SQL-Server-CAL-licensing-question/</link><pubDate>Sun, 09 Jul 2006 20:01:35 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/208610-SQL-Server-CAL-licensing-question/</guid><evnet:views>24942</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/208610/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>If you have a SQL server which is licensed on a user CAL basis and you are using it as the db for your asp.net web app, would you need a CAL for the amount of users accessing your asp.net app per second?&amp;nbsp; &lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>46</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/208610-SQL-Server-CAL-licensing-question/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/208610/Trackback.aspx</trackback:ping></item><item><title>Leaks Javascript IE memory? [Leaks Javascript IE memory?]</title><description>This code wouldn't obviously leak memory, would it not?&lt;br&gt;&lt;br&gt;

&lt;code&gt;

function doSomething() {  
  &lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; var mycallb = function() {
    &lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; alert("woot!\n my callback!");
  &lt;br&gt;&amp;nbsp;&amp;nbsp; }
  &lt;br&gt;callServer(mycallb);
&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function callServer(callb) {&lt;br&gt;&lt;br&gt;var b = function() {
    &lt;br&gt;// maybe do something here, set status?
   &lt;br&gt;&lt;br&gt;callb(); // raise call back
  &lt;br&gt;}
  &lt;br&gt;&lt;br&gt;Network.Request("blah.com",b);
&lt;br&gt;&lt;br&gt;}

&lt;/code&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/208171-Leaks-Javascript-IE-memory/'&gt;Leaks Javascript IE memory?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/208171/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/208171-Leaks-Javascript-IE-memory/</comments><link>http://channel9.msdn.com/forums/TechOff/208171-Leaks-Javascript-IE-memory/</link><pubDate>Fri, 07 Jul 2006 21:59:50 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/208171-Leaks-Javascript-IE-memory/</guid><evnet:views>1973</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/208171/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>This code wouldn't obviously leak memory, would it not?&lt;br&gt;&lt;br&gt;

&lt;code&gt;

function doSomething() {  
  &lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; var mycallb = function() {
    &lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; alert("woot!\n my callback!");
  &lt;br&gt;&amp;nbsp;&amp;nbsp; }
  &lt;br&gt;callServer(mycallb);
&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function callServer(callb) {&lt;br&gt;&lt;br&gt;var b = function() {
    &lt;br&gt;// maybe do something here, set status?
   &lt;br&gt;&lt;br&gt;callb(); // raise call back
  &lt;br&gt;}
  &lt;br&gt;&lt;br&gt;Network.Request("blah.com",b);
&lt;br&gt;&lt;br&gt;}

&lt;/code&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/208171-Leaks-Javascript-IE-memory/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/208171/Trackback.aspx</trackback:ping></item><item><title>on10.net - &amp;gt; ten.com ? [on10.net - &amp;gt; ten.com ?]</title><description>Well, I was examining the JS source for on10 and I came across this:&lt;br&gt;&lt;br&gt;&amp;nbsp;registrationResults.innerHTML= '&amp;lt;p&amp;gt;Account Created&amp;lt;br /&amp;gt;" + "You will receive a confirmation email from admin@&lt;b&gt;ten.com&lt;/b&gt;" +&amp;nbsp; " containing a validation link, copy and paste that link " + "into your browser to activate your account.&amp;lt;/p&amp;gt;" + &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;p&amp;gt;&amp;lt;a href='javascript:DoLogin();'&amp;gt;Click here to sign in now&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;";&lt;br&gt;&lt;br&gt;&lt;br&gt;Go to ten.com (not work safe) yourself!&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;I will just tell you what it is, dont want to get anyone into trouble :)&lt;br&gt;It is the front page intro to a p0rn site.&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/207686-on10net-gt-tencom-/'&gt;on10.net - &amp;gt; ten.com ?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/207686/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/207686-on10net-gt-tencom-/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/207686-on10net-gt-tencom-/</link><pubDate>Thu, 06 Jul 2006 16:45:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/207686-on10net-gt-tencom-/</guid><evnet:views>6176</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/207686/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Well, I was examining the JS source for on10 and I came across this:&lt;br&gt;&lt;br&gt;&amp;nbsp;registrationResults.innerHTML= '&amp;lt;p&amp;gt;Account Created&amp;lt;br /&amp;gt;" + "You will receive a confirmation email from admin@&lt;b&gt;ten.com&lt;/b&gt;" +&amp;nbsp; " containing a validation link, copy and paste that link " + "into your browser to activate your account.&amp;lt;/p&amp;gt;" + &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;p&amp;gt;&amp;lt;a href='javascript:DoLogin();'&amp;gt;Click here to sign in now&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;";&lt;br&gt;&lt;br&gt;&lt;br&gt;Go to ten.com (not work safe) yourself!&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>12</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/207686-on10net-gt-tencom-/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/207686/Trackback.aspx</trackback:ping></item><item><title>Win IRC Server? [Win IRC Server?]</title><description>Does anyone know a good win based irc server, apart from unreal ircd? I always struggled trying to get the services to work together with unreal.&lt;br&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/206001-Win-IRC-Server/'&gt;Win IRC Server?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/206001/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/206001-Win-IRC-Server/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/206001-Win-IRC-Server/</link><pubDate>Sun, 02 Jul 2006 10:46:10 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/206001-Win-IRC-Server/</guid><evnet:views>2400</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/206001/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Does anyone know a good win based irc server, apart from unreal ircd? I always struggled trying to get the services to work together with unreal.&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/206001-Win-IRC-Server/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/206001/Trackback.aspx</trackback:ping></item><item><title>ASPX 2.0 &amp;amp; ASPX 1.1 Session/Auth Sharing [ASPX 2.0 &amp;amp; ASPX 1.1 Session/Auth Sharing]</title><description>I have created a site coded in aspx 2.0 which uses my own custom authentication (sessions etc). I want to add bullitin boards supports to the site, but I want to hook into my own custom authentication system.&lt;br&gt;I am going to use the Yaf (http://www.yetanotherforum.net/) aspx forum system, but there is one quite large problem. Yaf only currently works under ASP.NET 1, and is currently hard to port over to 2.0.&lt;br&gt;Is there a way so Yaf (it will sit in /forums in the root) can interface with the sessions held by my main site?&lt;br&gt;&lt;br&gt;I was thinking of trying to implement some custom cookie system which would be built ontop of the asp.net 2 sessions. The main site would issue the cookie when the user logins (it would set the sessions as well). The cookie would contain the user_id of the current logged in user. The forum system could extract this cookie which was set in the main site and retrieve the user_id inside. The forum system could then query webservices in the main site which woud convert the user_id to usernames and any other required auth stuff. I would have to implement some security checking, so a hacker couldn't issue a crafted cookie to the forums system (the main site would probably compare the cookie user_id with its session user_id).&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Does anyone have any other ideas?&lt;br&gt;&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;New idea&lt;br&gt;&lt;br&gt;Maybe should I do something similiar which is used to bridge asp to aspx sessions? For each request Yaf would make an internal call to an aspx page in the root, it would include the ASP.NET_SessionID which has been supplied by the client as a header. The root aspx page would return the session values required by Yaf.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/204530-ASPX-20-amp-ASPX-11-SessionAuth-Sharing/'&gt;ASPX 2.0 &amp;amp; ASPX 1.1 Session/Auth Sharing&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/204530/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/204530-ASPX-20-amp-ASPX-11-SessionAuth-Sharing/</comments><link>http://channel9.msdn.com/forums/TechOff/204530-ASPX-20-amp-ASPX-11-SessionAuth-Sharing/</link><pubDate>Wed, 28 Jun 2006 15:42:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/204530-ASPX-20-amp-ASPX-11-SessionAuth-Sharing/</guid><evnet:views>1985</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/204530/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I have created a site coded in aspx 2.0 which uses my own custom authentication (sessions etc). I want to add bullitin boards supports to the site, but I want to hook into my own custom authentication system.&lt;br&gt;I am going to use the Yaf (http://www.yetanotherforum.net/) aspx forum system, but there is one quite large problem. Yaf only currently works under ASP.NET 1, and is currently hard to port over to 2.0.&lt;br&gt;Is there a way so Yaf (it will sit in /forums in the root) can interface with the sessions held by my main site?&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>1</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/204530-ASPX-20-amp-ASPX-11-SessionAuth-Sharing/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/204530/Trackback.aspx</trackback:ping></item><item><title>ASP.NET .NET remoting client. [ASP.NET .NET remoting client.]</title><description>Has anyone here ever used ASP.NET as a front end .NET remoting client? I am not using IIS to host the .NET remoting server. I will be just using TCP channels.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/202785-ASPNET-NET-remoting-client/'&gt;ASP.NET .NET remoting client.&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/202785/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/202785-ASPNET-NET-remoting-client/</comments><link>http://channel9.msdn.com/forums/TechOff/202785-ASPNET-NET-remoting-client/</link><pubDate>Thu, 22 Jun 2006 18:17:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/202785-ASPNET-NET-remoting-client/</guid><evnet:views>1490</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/202785/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Has anyone here ever used ASP.NET as a front end .NET remoting client? I am not using IIS to host the .NET remoting server. I will be just using TCP channels.&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/202785-ASPNET-NET-remoting-client/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/202785/Trackback.aspx</trackback:ping></item><item><title>SQL Server Management Studio Express - TCP/IP [SQL Server Management Studio Express - TCP/IP]</title><description>i have read that you can use the free sql management studio express to manage sql server 2000. I tried connecting using the management studio but it wants to connect to my sql server using named pipes which I cant use. The sql server is behind a firewall with port 1433 forwarded, I need to connect to it using the TCP/IP network library.&lt;br&gt;&lt;br&gt;Does anyone know how to tell sql management studio express to use the TCP/IP library to connect?&lt;br&gt;&lt;br&gt;&lt;br&gt;edit: I am quite new to sql server management, so if I am talking rubbish, tell me :)&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/200690-SQL-Server-Management-Studio-Express-TCPIP/'&gt;SQL Server Management Studio Express - TCP/IP&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/200690/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/200690-SQL-Server-Management-Studio-Express-TCPIP/</comments><link>http://channel9.msdn.com/forums/TechOff/200690-SQL-Server-Management-Studio-Express-TCPIP/</link><pubDate>Fri, 16 Jun 2006 19:30:28 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/200690-SQL-Server-Management-Studio-Express-TCPIP/</guid><evnet:views>23170</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/200690/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>i have read that you can use the free sql management studio express to manage sql server 2000. I tried connecting using the management studio but it wants to connect to my sql server using named pipes which I cant use. The sql server is behind a firewall with port 1433 forwarded, I need to connect to it using the TCP/IP network library.&lt;br&gt;&lt;br&gt;Does anyone know how to tell sql management studio express to use the TCP/IP library to connect?&lt;br&gt;&lt;br&gt;&lt;br&gt;edit: I am quite new to sql server management, so if I am talking rubbish, tell me &lt;img src='/emoticons/C9/emotion-1.gif' alt='Smiley' /&gt;&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>11</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/200690-SQL-Server-Management-Studio-Express-TCPIP/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/200690/Trackback.aspx</trackback:ping></item><item><title>Good Coding Music? [Good Coding Music?]</title><description>I am trying to search the pillers of the internet to find music which can accommodate early morning coding. I currently listen to rammstein which is quite good because of the fast paced nature.&lt;br&gt;Anyone know any good music which keeps minds active when coding?&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/195395-Good-Coding-Music/'&gt;Good Coding Music?&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/195395/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/195395-Good-Coding-Music/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/195395-Good-Coding-Music/</link><pubDate>Sat, 03 Jun 2006 18:24:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/195395-Good-Coding-Music/</guid><evnet:views>15264</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/195395/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am trying to search the pillers of the internet to find music which can accommodate early morning coding. I currently listen to rammstein which is quite good because of the fast paced nature.&lt;br&gt;Anyone know any good music which keeps minds active when coding?&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>44</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/195395-Good-Coding-Music/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/195395/Trackback.aspx</trackback:ping></item><item><title>C# Async Sockets Threading Problems [C# Async Sockets Threading Problems]</title><description>I am developing an app which needs to connect via TCP to the central server. I decided to go async sockets sockets, but I then found out that I trapped myself using Invoke to talk to the UI. I dont really want to use a Background worker.&lt;br&gt;I have seen some async .NET sockets implementatiosn in dlls done in C#. You simply add an event handler to the "OnDataRecieve" etc. They managed to flag the event on the same thread which the reference to the library was created. So you could update the UI without having to call invoke.&lt;br&gt;&lt;br&gt;I have ran the library through .NET reflector without much avail. They seem to be using [&lt;a title="System.Runtime.CompilerServices.MethodImplAttribute.MethodImplAttribute(MethodImplOptions);" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Object=1"&gt;MethodImpl&lt;/a&gt;(&lt;a title="System.Runtime.CompilerServices.MethodImplOptions" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Object=2"&gt;MethodImplOptions&lt;/a&gt;.&lt;a title="MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions.Synchronized;" href="http://www.aisto.com/roeder/dotnet/Default.aspx?Object=3"&gt;Synchronized&lt;/a&gt;)] inside the delegate specification before the "add { }" &amp;amp; "remove {}" blocks.&lt;br&gt;&lt;br&gt;Any help or ideas of what they may be doing, would be much appreciated :)&lt;br&gt;&lt;br&gt;&lt;b&gt;Update: Never mind, I have found a way :)&lt;/b&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/194285-C-Async-Sockets-Threading-Problems/'&gt;C# Async Sockets Threading Problems&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/194285/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/194285-C-Async-Sockets-Threading-Problems/</comments><link>http://channel9.msdn.com/forums/TechOff/194285-C-Async-Sockets-Threading-Problems/</link><pubDate>Wed, 31 May 2006 17:30:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/194285-C-Async-Sockets-Threading-Problems/</guid><evnet:views>2293</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/194285/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am developing an app which needs to connect via TCP to the central server. I decided to go async sockets sockets, but I then found out that I trapped myself using Invoke to talk to the UI. I dont really want to use a Background worker.&lt;br&gt;I have seen some async .NET sockets implementatiosn in dlls done in C#. You simply add an event handler to the "OnDataRecieve" etc. They managed to flag the event on the same thread which the reference to the library was created. So you could update the UI without having to call invoke.&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/194285-C-Async-Sockets-Threading-Problems/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/194285/Trackback.aspx</trackback:ping></item><item><title>Regular Expressions Extract Anchor Text [Regular Expressions Extract Anchor Text]</title><description>Would anyone kindly share a .NET regular expression sequence which can extract the text element from an anchor tag.&lt;br&gt;&lt;br&gt;Example:&lt;br&gt;&lt;br&gt;&amp;lt;a href="url"&amp;gt;I want this&amp;lt;/a&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;I dont know what the url would be, but I would like to extract the text element from the anchor tag.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/185607-Regular-Expressions-Extract-Anchor-Text/'&gt;Regular Expressions Extract Anchor Text&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/185607/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/185607-Regular-Expressions-Extract-Anchor-Text/</comments><link>http://channel9.msdn.com/forums/TechOff/185607-Regular-Expressions-Extract-Anchor-Text/</link><pubDate>Sun, 07 May 2006 18:00:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/185607-Regular-Expressions-Extract-Anchor-Text/</guid><evnet:views>9631</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/185607/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Would anyone kindly share a .NET regular expression sequence which can extract the text element from an anchor tag.&lt;br&gt;&lt;br&gt;Example:&lt;br&gt;&lt;br&gt;&amp;lt;a href="url"&amp;gt;I want this&amp;lt;/a&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;I dont know what the url would be, but I would like to extract the text element from the anchor tag.&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>7</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/185607-Regular-Expressions-Extract-Anchor-Text/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/185607/Trackback.aspx</trackback:ping></item><item><title>Forum Group Not Found [Forum Group Not Found]</title><description>I followed the link below for a supposed thread called "Deleting all my posts... how brave" from my RSS reader. But when I visit the link, I get a "Requested Forum Group does not exist" error.&lt;br&gt;I am seeing some hidden posts from a hidden forum, or what?&lt;br&gt;&lt;br&gt;&lt;br&gt;

&lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=186332#186332&gt;http://channel9.msdn.com/ShowPost.aspx?PostID=186332#186332&lt;/a&gt;&amp;nbsp;&lt;br&gt;
&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/181907-Forum-Group-Not-Found/'&gt;Forum Group Not Found&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/181907/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/181907-Forum-Group-Not-Found/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/181907-Forum-Group-Not-Found/</link><pubDate>Thu, 27 Apr 2006 22:02:02 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/181907-Forum-Group-Not-Found/</guid><evnet:views>1882</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/181907/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I followed the link below for a supposed thread called "Deleting all my posts... how brave" from my RSS reader. But when I visit the link, I get a "Requested Forum Group does not exist" error.&lt;br&gt;I am seeing some hidden posts from a hidden forum, or what?&lt;br&gt;&lt;br&gt;&lt;br&gt;

&lt;a href="/ShowPost.aspx?PostID=186332#186332"&gt;http://channel9.msdn.com/ShowPost.aspx?PostID=186332#186332&lt;/a&gt;&amp;nbsp;&lt;br&gt;
&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>4</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/181907-Forum-Group-Not-Found/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/181907/Trackback.aspx</trackback:ping></item><item><title>Web 2.0/AJAX DHTML Dialog Galore [Web 2.0/AJAX DHTML Dialog Galore]</title><description>I am developing a "Web 2.0" / AJAX applications but I am running into some problem deciding how I will handle the dialogs. The app will contain quite a few dialogs (20 +), all with JS logic handling on the dialogs.&lt;br&gt;&lt;br&gt;The problem is, how do I create/architect the DHTML dialogs:&lt;br&gt;&lt;br&gt;1. Simple draw all the menus using JS, and add functions, when the browser opens the app.&lt;br&gt;&lt;br&gt;2. Make a request to the server when the desired dialog is required, it will eval() the responseText. The reponseText will contain JS code to draw the dialogs (document.createElement), and the required code to handle the logic of the dialog (user input).&lt;br&gt;&lt;br&gt;3. Make a request to the server when the desired dialog is required, and eval() the responseText. The responseText this time will still contain JS code, but it will hold the required dialog's HTML/XHTML in a var string. There would be some JS in the response to create a holder and inject it with&amp;nbsp; HTML using the var string (innerHTML) . The JS will still like before, contain code to handle the logic.&lt;br&gt;&lt;br&gt;4. Any other ideas!&lt;br&gt;&lt;br&gt;The idea behind it, is to reduce the amount of JS/HTML needed to run the app initially. The JS for the dialog will only be used when the user requests that dialog.&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/176739-Web-20AJAX-DHTML-Dialog-Galore/'&gt;Web 2.0/AJAX DHTML Dialog Galore&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/176739/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/176739-Web-20AJAX-DHTML-Dialog-Galore/</comments><link>http://channel9.msdn.com/forums/TechOff/176739-Web-20AJAX-DHTML-Dialog-Galore/</link><pubDate>Tue, 11 Apr 2006 13:28:05 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/176739-Web-20AJAX-DHTML-Dialog-Galore/</guid><evnet:views>1351</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/176739/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I am developing a "Web 2.0" / AJAX applications but I am running into some problem deciding how I will handle the dialogs. The app will contain quite a few dialogs (20 +), all with JS logic handling on the dialogs.&lt;br&gt;&lt;br&gt;The problem is, how do I create/architect the DHTML dialogs:&lt;br&gt;&lt;br&gt;1. Simple draw all the menus using JS, and add functions, when the browser opens the app.&lt;br&gt;&lt;br&gt;2. Make a request to the server when the desired dialog is required, it will eval() the responseText. The reponseText will contain JS code to draw the dialogs (document.createElement), and the required code to handle the logic of the dialog (user input).&lt;br&gt;&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/176739-Web-20AJAX-DHTML-Dialog-Galore/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/176739/Trackback.aspx</trackback:ping></item><item><title>Static SQL Connection [Static SQL Connection]</title><description>Right, I have a problem.&lt;BR&gt;Lets do a simple example.&lt;BR&gt;&lt;BR&gt;Say I have 3 classes, all do&amp;nbsp;handle different&amp;nbsp;aspects of logic. The classes uses a static sqlconnection, so one doesnt have to create a new sql connection for each class.&lt;BR&gt;&lt;BR&gt;Note, this is for asp.net&lt;BR&gt;&lt;BR&gt;Public Class DataConnections&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static sqlConnection;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static void Open() {&lt;BR&gt;sqlConnection = new sqlConnection();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;Blah&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static void Close() {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// blah&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;public Class Main {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DataConnections.Open();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Logic1 code = new Logic1();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Logic2 code2 = new Logic2();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;code.test();&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;code2.test();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DataConnections.Close();&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;public Class Logic 1 &lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public void test() {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;perform our operations on the DataConnections.sqlConnection&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;public Class Logic 2&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;public void test2() {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;perform our operations on the DataConnections.sqlConnection&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;&lt;BR&gt;}&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;If I dispose everything correctly, is it valid to use a static sql connection object between multiple classes in a web project?&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;update:&lt;BR&gt;fixed/expanded the example code&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/171716-Static-SQL-Connection/'&gt;Static SQL Connection&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/171716/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/171716-Static-SQL-Connection/</comments><link>http://channel9.msdn.com/forums/TechOff/171716-Static-SQL-Connection/</link><pubDate>Sun, 26 Mar 2006 21:23:04 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/171716-Static-SQL-Connection/</guid><evnet:views>8637</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/171716/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Right, I have a problem.&lt;BR&gt;Lets do a simple example.&lt;BR&gt;&lt;BR&gt;Say I have 3 classes, all do&amp;nbsp;handle different&amp;nbsp;aspects of logic. The classes uses a static sqlconnection, so one doesnt have to create a new sql connection for each class.&lt;BR&gt;&lt;BR&gt;Note, this is for asp.net&lt;BR&gt;&lt;BR&gt;Public Class DataConnections&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static sqlConnection;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static void Open() {&lt;BR&gt;sqlConnection = new sqlConnection();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;Blah&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>18</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/171716-Static-SQL-Connection/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/171716/Trackback.aspx</trackback:ping></item><item><title>Writely acquired by google [Writely acquired by google]</title><description>I dont like posting news, but this sounded interesting.&lt;br&gt;&lt;br&gt;Google has recently acquired the webbased writing app, &lt;a href="http://www2.writely.com/info/WritelyOverflowWelcome.htm"&gt;writely&lt;/a&gt;&lt;br&gt;&lt;br&gt;



&lt;a href="http://www.techcrunch.com/2006/03/09/writely-confirms-google-acquisition/"&gt;http://www.techcrunch.com/2006/03/09/writely-confirms-google-acquisition/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Since writely is coded in ASPX, I wonder if google will convert it to python or whatever they use.&lt;br&gt;&lt;br&gt;(btw, sorry if this has already been posted)&lt;br&gt;&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;the ww2.writely.com is used for serving information, which is hosted by google's own webserver. www.writely.com/basepage.aspx?action=login is hosted by IIS6.&lt;br&gt;&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/165818-Writely-acquired-by-google/'&gt;Writely acquired by google&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/165818/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/165818-Writely-acquired-by-google/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/165818-Writely-acquired-by-google/</link><pubDate>Thu, 09 Mar 2006 21:23:51 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/165818-Writely-acquired-by-google/</guid><evnet:views>3876</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/165818/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I dont like posting news, but this sounded interesting.&lt;br&gt;&lt;br&gt;Google has recently acquired the webbased writing app, &lt;a href="http://www2.writely.com/info/WritelyOverflowWelcome.htm"&gt;writely&lt;/a&gt;&lt;br&gt;&lt;br&gt;



&lt;a href="http://www.techcrunch.com/2006/03/09/writely-confirms-google-acquisition/"&gt;http://www.techcrunch.com/2006/03/09/writely-confirms-google-acquisition/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Since writely is coded in ASPX, I wonder if google will convert it to python or whatever they use.&lt;br&gt;&lt;br&gt;(btw, sorry if this has already been posted)&lt;br&gt;&lt;br&gt;&lt;br&gt;edit:&lt;br&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>10</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/165818-Writely-acquired-by-google/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/165818/Trackback.aspx</trackback:ping></item><item><title>More antitrust [More antitrust]</title><description>&lt;a href="http://www.cbronline.com/article_news.asp?guid=9C46B7CD-67E3-46E6-A23F-6C6BEF6A1DD3"&gt;http://www.cbronline.com/article_news.asp?guid=9C46B7CD-67E3-46E6-A23F-6C6BEF6A1DD3&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;They&amp;nbsp;are claiming that it is not fair that&amp;nbsp;ms includes Active Directory with Windows Server.&lt;BR&gt;&lt;BR&gt;Edit:&lt;BR&gt;They also claim that it is not fair that ms includes the .NET framework, Media Server.&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/Coffeehouse/161126-More-antitrust/'&gt;More antitrust&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/161126/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/Coffeehouse/161126-More-antitrust/</comments><link>http://channel9.msdn.com/forums/Coffeehouse/161126-More-antitrust/</link><pubDate>Thu, 23 Feb 2006 18:28:47 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/Coffeehouse/161126-More-antitrust/</guid><evnet:views>3048</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/161126/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>&lt;a href="http://www.cbronline.com/article_news.asp?guid=9C46B7CD-67E3-46E6-A23F-6C6BEF6A1DD3"&gt;http://www.cbronline.com/article_news.asp?guid=9C46B7CD-67E3-46E6-A23F-6C6BEF6A1DD3&lt;/a&gt;&lt;BR&gt;&lt;BR&gt;They&amp;nbsp;are claiming that it is not fair that&amp;nbsp;ms includes Active Directory with Windows Server.&lt;BR&gt;&lt;BR&gt;Edit:&lt;BR&gt;They also claim that it is not fair that ms includes the .NET framework, Media Server.&lt;BR&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>9</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/Coffeehouse/161126-More-antitrust/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/161126/Trackback.aspx</trackback:ping></item><item><title>Dynamically loading javascript [Dynamically loading javascript]</title><description>For WebDev 2, I will need to allow javascript to be dynamically downloaded.&lt;BR&gt;This is not to hard at all, using document.createElement("script"). But I need to know that the new js source has been downloaded, since "&amp;lt;script src=""&amp;gt; pull the src asynchronously.&lt;BR&gt;One wanted to use the onload attribute of the script tag but it only seemed to work in FF and not IE.&lt;BR&gt;I'm thinking that the only option is to append some event notifying&amp;nbsp;code to the end of the dynamically pulled script to notify and call a function.&lt;BR&gt;&lt;BR&gt;Does anyone know any&amp;nbsp;other way of doing this?&lt;BR&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/155963-Dynamically-loading-javascript/'&gt;Dynamically loading javascript&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/155963/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/155963-Dynamically-loading-javascript/</comments><link>http://channel9.msdn.com/forums/TechOff/155963-Dynamically-loading-javascript/</link><pubDate>Wed, 01 Feb 2006 16:40:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/155963-Dynamically-loading-javascript/</guid><evnet:views>7880</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/155963/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>For WebDev 2, I will need to allow javascript to be dynamically downloaded.&lt;BR&gt;This is not to hard at all, using document.createElement("script"). But I need to know that the new js source has been downloaded, since "&amp;lt;script src=""&amp;gt; pull the src asynchronously.&lt;BR&gt;One wanted to use the onload attribute of the script tag but it only seemed to work in FF and not IE.&lt;BR&gt;I'm thinking that the only option is to append some event notifying&amp;nbsp;code to the end of the dynamically pulled script to notify and call a function.&lt;BR&gt;&lt;BR&gt;Does anyone know any&amp;nbsp;other way of doing this?&lt;BR&gt;</evnet:previewtext><dc:creator>yman</dc:creator><slash:comments>8</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/155963-Dynamically-loading-javascript/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/155963/Trackback.aspx</trackback:ping></item></channel></rss>