<?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 Lwatson</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/niners/lwatson/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Entries for Lwatson</title><link>http://channel9.msdn.com/Niners/lwatson/</link></image><description>Entries, comments and threads posted by Lwatson</description><link>http://channel9.msdn.com/Niners/lwatson/</link><language>en-us</language><pubDate>Mon, 06 Sep 2004 14:47:22 GMT</pubDate><lastBuildDate>Mon, 06 Sep 2004 14:47:22 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Classes in C# [Classes in C#]</title><description>To start off our company is attempting to broaden its development
horizons by becoming as proficient in C# as we are already in VB.NET.
With that we have been running across a number of issues that I wanted
to see if anyone else out there is having and what if any workaounds
exist or more likely what we are doing wrong.&lt;br&gt;
&lt;br&gt;
First&lt;br&gt;
Has anyone else out there seen or experianced the Visual Studio forms
designer in C# projects just arbritrarily munging the placement of
controls at run time when in design time there they sit right where we
put em. Note we are being carefull NOT to touch the forms designer
generated code only touching the one place in the constructors where we
are supposed to put our own code.&lt;br&gt;
&lt;br&gt;
Second and perhaps more perplexing&lt;br&gt;
We have a project defined class template with some properties. like so&lt;br&gt;
&lt;br&gt;
namespace ProjectX&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; public class clsMember {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; public clsMember()&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; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // Main Member Data&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; string _bsuNumber = "";&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; string _cisNumber = "";&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; public string BSUNumber {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; get {return this._bsuNumber;}&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; set {this._bsuNumber = value;}&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; public string CISNumber {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; get {return this._cisNumber;}&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; set {this._cisNumber = value;}&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; }&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
Now we have this class in our projects next we might want to use this
class within some form class so we define an instance at the form level
like so...&lt;br&gt;
&lt;br&gt;
static clsMember _member;&lt;br&gt;
&lt;br&gt;
Next within the some method inside the form we might want to use the class so we do something like this&lt;br&gt;
public SomeMethod()&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; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; _member = new clsMember();&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;  // do something to fill the class with stuff&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; // here we want to use the thing&lt;br&gt;
&amp;nbsp;&amp;nbsp;&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; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; this.txtMemberBSU.Text = _member.BSUNumber;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; this.txtMemberCIS.Text = _member.CISNumber;&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;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&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; }&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Our problem is that the Intellesense on Visual Studio does not show us
the public interface on the _member instance of clsMember. It is valid
as if I remeber the exact case formatting for the member methods I can
certainly code the thing up but Visual Studio's helper functionality is
not working as it always does in a VB.Net project.&lt;br&gt;
&lt;br&gt;
I can't help but feel the we are just missing something. Or perhaps we
have structured the thing incorrectly. So I figured I would petition
the SME Gods for a sign.&lt;br&gt;
&lt;br&gt;
Let the Flames begin...&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/20439-Classes-in-C/'&gt;Classes in C#&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/20439/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/20439-Classes-in-C/</comments><link>http://channel9.msdn.com/forums/TechOff/20439-Classes-in-C/</link><pubDate>Mon, 06 Sep 2004 14:47:22 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/20439-Classes-in-C/</guid><evnet:views>11176</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/20439/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>To start off our company is attempting to broaden its development
horizons by becoming as proficient in C# as we are already in VB.NET.
With that we have been running across a number of issues that I wanted
to see if anyone else out there is having and what if any workaounds
exist or more likely what we are doing wrong.

First
Has anyone else out there seen or experianced the Visual Studio forms
designer in C# projects just arbritrarily munging the placement of
controls at run time when in design time there they sit right where we
put em. Note we are being carefull NOT to touch the&amp;#8230;</evnet:previewtext><dc:creator>Lwatson</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/20439-Classes-in-C/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/20439/Trackback.aspx</trackback:ping></item><item><title>Getting ASP.NET servers to send some specific HTML for non Microsoft browsers [Getting ASP.NET servers to send some specific HTML for non Microsoft browsers]</title><description>I suspect I am just missing something simple here, but I have a
situation where the html sent to IE via some simple ASP.NET pages that
I am futzing about with render fine in IE as expected, Also as expected
render like bat guano on non IE browsers like Mozilla, Opera, and
Firefox.&lt;br&gt;
&lt;br&gt;
Now if I take the actual HTML stream from IE by examining source and
compare it to the source sent to say firefox I can see that several of
the parameters sent to IE are missing in the html streamed by IIS to
the non microsoft browser. Presumabily these browsers don't support
these parameters on the controls ( Text boxes are an example ).&lt;br&gt;
&lt;br&gt;
But If I save the IE HTML to a file and open that file in the non IE
browser I get perfectly rendered output in the non IE browser. So the
browser does allow these parameters but IIS is just not sending them.&lt;br&gt;
&lt;br&gt;
My question is how do I get IIS to expand its output to include these parameters on more browsers than just IE?.&lt;br&gt;
&lt;br&gt;
(I have tried numerous browser ID strings settings with no luck) so my
thought is that there is something else the IIS and ASP.NET are doing
to detect what broswer I am using. ( Some expanded browser caps
settings for example )&lt;br&gt;
&lt;br&gt;
I'm sure the flames are coming but I have my fire retardant on so do your worst!&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;p&gt;in reply to &lt;a href='http://channel9.msdn.com/forums/TechOff/12011-Getting-ASPNET-servers-to-send-some-specific-HTML-for-non-Microsoft-browsers/'&gt;Getting ASP.NET servers to send some specific HTML for non Microsoft browsers&lt;/a&gt;&lt;/p&gt;&lt;img src="http://channel9.msdn.com/12011/WebViewBug.aspx?EVT=0" height="1" width="1" alt="" /&gt;</description><comments>http://channel9.msdn.com/forums/TechOff/12011-Getting-ASPNET-servers-to-send-some-specific-HTML-for-non-Microsoft-browsers/</comments><link>http://channel9.msdn.com/forums/TechOff/12011-Getting-ASPNET-servers-to-send-some-specific-HTML-for-non-Microsoft-browsers/</link><pubDate>Tue, 06 Jul 2004 20:11:21 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/forums/TechOff/12011-Getting-ASPNET-servers-to-send-some-specific-HTML-for-non-Microsoft-browsers/</guid><evnet:views>7470</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/12011/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I suspect I am just missing something simple here, but I have a
situation where the html sent to IE via some simple ASP.NET pages that
I am futzing about with render fine in IE as expected, Also as expected
render like bat guano on non IE browsers like Mozilla, Opera, and
Firefox.&lt;br&gt;
&lt;br&gt;
Now if I take the actual HTML stream from IE by examining source and
compare it to the source sent to say firefox I can see that several of
the parameters sent to IE are missing in the html streamed by IIS to
the non microsoft browser. Presumabily these browsers don't support
these parameters on the controls ( Text boxes are an example ).&lt;br&gt;</evnet:previewtext><dc:creator>Lwatson</dc:creator><slash:comments>2</slash:comments><wfw:commentRss>http://channel9.msdn.com/forums/TechOff/12011-Getting-ASPNET-servers-to-send-some-specific-HTML-for-non-Microsoft-browsers/RSS/</wfw:commentRss><trackback:ping>http://channel9.msdn.com/12011/Trackback.aspx</trackback:ping></item></channel></rss>