<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>WilsonDotNet Forums : VB Specific</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=rss&amp;id=23&amp;key=MklpwfXukSHAgicZCZWbjA%3d%3d</link><description>WilsonDotNet Forums : VB Specific</description><item><title>Generics</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=2022&amp;key=rbHggvRi%2bmKGExSVsOd6KA%3d%3d&amp;post=6285</link><pubDate>Tue, 14 Mar 2006 17:51:38 GMT</pubDate><description>I believe its:&lt;br&gt;&lt;br&gt;Dim contacts as ObjectSet(Of Contact) = Manager.GetObjectSet(Of Contact)(String.Empty);&lt;br&gt;&lt;br&gt;Thanks, Paul Wilson&lt;br&gt;</description></item><item><title>Generics</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=2022&amp;key=rbHggvRi%2bmKGExSVsOd6KA%3d%3d&amp;post=6259</link><pubDate>Sat, 11 Mar 2006 22:00:47 GMT</pubDate><description>&lt;P&gt;How would &lt;/P&gt;
&lt;P&gt;ObjectSet&amp;lt;Contact&amp;gt; contacts = Manager.GetObjectSet&amp;lt;Contact&amp;gt;(string.Empty);&lt;/P&gt;
&lt;P&gt;look in VB.Net?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>Getting Started</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=1607&amp;key=afoomx6HNptTZg%2bdzoWqpg%3d%3d&amp;post=5000</link><pubDate>Wed, 19 Oct 2005 12:19:36 GMT</pubDate><description>It appears the VB added a Global keyword in .NET v2.0 (2005), so just change it to something else.  That said, I agree that I do need to update the Demo to have a VB 2005 version also.&lt;br /&gt;
&lt;br /&gt;
Thanks, Paul Wilson</description></item><item><title>Getting Started</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=1607&amp;key=afoomx6HNptTZg%2bdzoWqpg%3d%3d&amp;post=4998</link><pubDate>Wed, 19 Oct 2005 11:55:26 GMT</pubDate><description>is there a getting started document on how to implement this model into the code ?  I followed the examples, but when I try to create a new VS 2005 B2 VB.NET project, I get the following error message with this code fragment&lt;br /&gt;
&lt;br /&gt;
Public NotInheritable Class Global&lt;br /&gt;
***  KeyWord [Global] is not valid as an identifier.&lt;br /&gt;
&lt;br /&gt;
Any sample VS2005 VB.Net code would also help.  Many Thanks&lt;br /&gt;
&lt;br /&gt;
JonT</description></item><item><title>aspx/html page creation</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=20&amp;key=GvL9cHr4ebTs1ZgcSUREkQ%3d%3d&amp;post=3663</link><pubDate>Tue, 03 May 2005 05:05:22 GMT</pubDate><description>This is a VB example -- use &amp;quot;base&amp;quot; instead of &amp;quot;MyBase&amp;quot; if you're using C#.  That's the only thing I can think of.&lt;br /&gt;
&lt;br /&gt;
Thanks, Paul Wilson</description></item><item><title>aspx/html page creation</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=20&amp;key=GvL9cHr4ebTs1ZgcSUREkQ%3d%3d&amp;post=3660</link><pubDate>Tue, 03 May 2005 02:39:28 GMT</pubDate><description>I have inserted this code into a aspx page and I carry on getting a MyBase &amp;quot;object reference not set to an instance of an object&amp;quot;&lt;br /&gt;
Any ideas?...&lt;br /&gt;
&lt;br /&gt;
Thanks in advance&lt;br /&gt;
&lt;br /&gt;
plarisch@europarl.eu.int</description></item><item><title>aspx/html page creation</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=20&amp;key=GvL9cHr4ebTs1ZgcSUREkQ%3d%3d&amp;post=45</link><pubDate>Sat, 15 Mar 2003 13:02:07 GMT</pubDate><description>You can capture the rendered html of a page with this code in your page:&lt;br /&gt;
&lt;br /&gt;
Protected Overrides Sub Render(ByVal writer As HtmlTextWriter)&lt;br /&gt;
  Dim _stringBuilder As StringBuilder = New StringBuilder()&lt;br /&gt;
  Dim _stringWriter As StringWriter = New StringWriter(_stringBuilder)&lt;br /&gt;
  Dim _htmlWriter As HtmlTextWriter = New HtmlTextWriter(_stringWriter)&lt;br /&gt;
  MyBase.Render(_htmlWriter)&lt;br /&gt;
  ' ***** Email/Save/Modify _yourHtml *****&lt;br /&gt;
  Dim _yourHtml As String = _stringBuilder.ToString()&lt;br /&gt;
  writer.Write(_yourHtml)&lt;br /&gt;
End Sub&lt;br /&gt;
&lt;br /&gt;
As for what you should do with it, i.e. save it to file or store in database, that really depends a lot more on your specific requirements.  It could certainly use a lot of disk or database space, and should possibly be cleaned up somehow, but only you can say what your users need.  I will note that most cases find it sufficient to either email the entire page, instead of saving it all, or only saving the parts of the page that are unique to that user/session.&lt;br /&gt;
&lt;br /&gt;
Thanks, Paul Wilson&lt;br /&gt;
</description></item><item><title>aspx/html page creation</title><link>http://www.microsoftarchitect.com/Forums/Default.aspx?part=42&amp;action=thread&amp;id=20&amp;key=GvL9cHr4ebTs1ZgcSUREkQ%3d%3d&amp;post=44</link><pubDate>Fri, 14 Mar 2003 18:56:44 GMT</pubDate><description>I have an aspx form that a user enters data into.  Based &lt;br /&gt;
on the users selections and submission, I need to create &lt;br /&gt;
another aspx or html form and store it for later retrieval &lt;br /&gt;
by the client.&lt;br /&gt;
&lt;br /&gt;
What would be the best method to accomplish this task?&lt;br /&gt;
&lt;br /&gt;
Would I write the html code each time, to a uique file name(HTML or ASPX) on the HD replacing the variable information with the appropriate data fields? Then create a link where the user could retrieve the aspx/html form?&lt;br /&gt;
&lt;br /&gt;
Your help is greatly appreciated.&lt;br /&gt;
&lt;br /&gt;
Mike&lt;br /&gt;
mpbourne@hotmail.com&lt;br /&gt;
&lt;br /&gt;
</description></item></channel></rss>