User Ady - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:24:39Zhttp://stackoverflow.com/feeds/user/31395http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/562010/asp-net-2-0-datagrid-with-tbody-thead0ASP.NET 2.0 - DataGrid with tbody / theadAdy2009-02-18T17:13:26Z2009-10-08T07:52:55Z
<p>Is there a way to get the DataGrid control to render the tbody and thead HTML elements?</p>
http://stackoverflow.com/questions/242813/when-to-use-double-or-single-quotes-in-javascript/242833#24283315Answer by Ady for When to Use Double or Single Quotes in JavaScriptAdy2008-10-28T10:40:18Z2009-07-26T10:42:54Z<p>I wouldn't say there is a preferred method, you can use either. However If you are using one form of quote in the string, you might want to use the other as the literal.</p>
<pre>
alert('Say "Hello"');
alert("Say 'Hello'");
</pre>
<p>The most likely reason is programmer preferance / API consistency.</p>
http://stackoverflow.com/questions/562010/asp-net-2-0-datagrid-with-tbody-thead/562212#5622120Answer by Ady for ASP.NET 2.0 - DataGrid with tbody / theadAdy2009-02-18T18:11:19Z2009-02-18T18:11:19Z<p>Right, looks like the data grid doesn't support this out of the box, so I've had to create a class that inherits from the DataGrid. After the DataGrid has rendered I then parse the HTML and inject the elements in the correct place.</p>
<p>Attached is my class for those that whant to know how. This is a quick and dirty approach, so I'm welcome to better ideas.</p>
<pre><code>
Imports System.IO
Imports System.Text
Public Class TestDataGrid
Inherits System.Web.UI.WebControls.DataGrid
Private sTHeadClass As String = String.Empty
Private sTBodyClass As String = String.Empty
Private sTFootClass As String = String.Empty
#Region " Properties "
Public Property THeadClass() As String
Get
Return sTHeadClass
End Get
Set(ByVal value As String)
sTHeadClass = value
End Set
End Property
Public Property TBodyClass() As String
Get
Return sTBodyClass
End Get
Set(ByVal value As String)
sTBodyClass = value
End Set
End Property
Public Property TFootClass() As String
Get
Return sTFootClass
End Get
Set(ByVal value As String)
sTFootClass = value
End Set
End Property
#End Region
Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
Dim oMemoryStream As New MemoryStream()
Dim oStreamWriter As New StreamWriter(oMemoryStream)
Dim oStreamReader As New StreamReader(oMemoryStream)
Dim oHtmlTextWriter As New HtmlTextWriter(oStreamWriter)
MyBase.Render(oHtmlTextWriter)
oHtmlTextWriter.Flush()
oMemoryStream.Flush()
oMemoryStream.Position = 0
Dim sHtml As String = oStreamReader.ReadToEnd()
Dim oHtml As New Text.StringBuilder()
Dim iPastIndex As Integer = 0
Dim iIndex As Integer = sHtml.IndexOf("<tr>")
oHtml.Append(sHtml.Substring(iPastIndex, iIndex - iPastIndex))
iPastIndex = iIndex
If ShowHeader Then
WriteElementStart(oHtml, "thead", sTHeadClass)
'Write Header Row
iIndex = sHtml.IndexOf("</tr>", iPastIndex) + 5
oHtml.Append(sHtml.Substring(iPastIndex, iIndex - iPastIndex))
iPastIndex = iIndex
oHtml.Append("</thead>")
WriteElementStart(oHtml, "tbody", sTBodyClass)
Else
WriteElementStart(oHtml, "tbody", sTBodyClass)
End If
If ShowFooter Then
'Writer Body Rows
iIndex = sHtml.LastIndexOf("<tr>")
oHtml.Append(sHtml.Substring(iPastIndex, iIndex - iPastIndex))
iPastIndex = iIndex
WriteElementEnd(oHtml, "tbody")
WriteElementStart(oHtml, "tfoot", sTFootClass)
'Write Footer Row
iIndex = sHtml.LastIndexOf("</table>")
oHtml.Append(sHtml.Substring(iPastIndex, iIndex - iPastIndex))
iPastIndex = iIndex
WriteElementEnd(oHtml, "tfoot")
Else
iIndex = sHtml.LastIndexOf("</table>")
oHtml.Append(sHtml.Substring(iPastIndex, iIndex - iPastIndex))
iPastIndex = iIndex
WriteElementEnd(oHtml, "tbody")
End If
oHtml.Append(sHtml.Substring(iPastIndex, sHtml.Length - iPastIndex))
writer.Write(oHtml.ToString())
End Sub
Private Sub WriteElementStart(ByVal Builder As StringBuilder, ByVal Tag As String, ByVal CssClass As String)
If String.IsNullOrEmpty(CssClass) Then
Builder.AppendFormat("<{0}>", Tag)
Else
Builder.AppendFormat("<{0} class='{1}'>", Tag, CssClass)
End If
End Sub
Private Sub WriteElementEnd(ByVal Builder As StringBuilder, ByVal Tag As String)
Builder.AppendFormat("</{0}>", Tag)
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/246795/hiring-your-first-employee9Hiring your first employeeAdy2008-10-29T13:31:38Z2009-02-05T21:43:19Z
<p>A few years ago I moved to a new job having been programming for 2 years using C#, however this new company was mainly using VB6. I made the case for .NET and won, but one of the consessions I had to make was to use VB.NET and not C# (understandable as most of the other developers were already using VB).</p>
<p>Three years later it was time to move on, but when applying for jobs I couldn't get past the recruitment agents. I realised that when they were looking at the basic requirements (5 years experience) that they could not add 2 and 3 together to make 5. They were looking for 5 years in VB or C# not across both.</p>
<p>Frustrated I decided to combine my skills with a designer friend and start my own company. After two years of hard graft we are now looking for our first employee (a programmer), and this question has hit me again, but now I see the employers perspective. Why take the risk of someone getting up to speed when you have thousands of applicants to choose from.</p>
<p>So my question is this, if I define the requirements to be too narrow, I could miss the really great candidates. But if they are too broad it's going to take ages to go through them all. This will be our first 'employee' so the choice needs to be good, I can't afford to make a mistake and employ someone naff. Another option would be to choose a bright university graduate, and train them up (less of a risk because we can pay them less).</p>
<p>What have others done in this situation, and what would you recommend I do?</p>
http://stackoverflow.com/questions/486924/asp-net-multiple-dynamic-images-performance-issues-due-to-too-many-http-reques/486953#4869531Answer by Ady for ASP.Net - Multiple dynamic images. Performance issues due to too many Http RequestsAdy2009-01-28T09:00:15Z2009-01-28T09:05:33Z<p>You could try increasing the number of worker threads in your asp.net config file.</p>
<p>More info can be found here:<br />
<a href="http://williablog.net/williablog/post/2008/12/02/Increase-ASPNET-Scalability-Instantly.aspx" rel="nofollow">http://williablog.net/williablog/post/2008/12/02/Increase-ASPNET-Scalability-Instantly.aspx</a>
<a href="http://msdn.microsoft.com/en-us/library/ms187024.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms187024.aspx</a></p>
<p>I will also add that the HTTP standard restricts the number of simultanious connections to a single server to just 2 connections per client. IE certainly enforces this restriction, but Firefox I beleive limits itself to 4. These restrictions are client configurable I'm afraid (you can't change them from the server side).</p>
http://stackoverflow.com/questions/486859/asp-net-response-redirect-shows-cdata-to-browser/486936#4869361Answer by Ady for ASP.NET Response.Redirect shows CDATA to browserAdy2009-01-28T08:51:53Z2009-01-28T08:51:53Z<p>An HTTP redirect from asp.net is usually made using the HTTP header rather than any HTML output. Have you tried interogating the HTTP header to determine what is being returned? </p>
<p>Tools such as the following can help:<br />
<a href="http://web-sniffer.net/" rel="nofollow">http://web-sniffer.net/</a></p>
<p>CDATA is an XML element, and as such I would not expect this as a sole output from the server. Could you try pasting the full output here for us to take a look at?</p>
http://stackoverflow.com/questions/483313/why-is-my-aspx-page-rendering-different-html-in-firefox-and-ie/483406#4834060Answer by Ady for Why is my Aspx page rendering different HTML in FireFox and IEAdy2009-01-27T13:35:44Z2009-01-27T13:35:44Z<p>According to Microsof the LinkButton "Displays a hyperlink-style button control on a Web page.". As such I would not expect adaptive rendering to change this from a HyperLink to a span. I have never seen this behaviour.</p>
<p>If this is truly what is happening then you may want to check a couple of thigs:</p>
<ol>
<li>Are there any DHTML or JS loading that changes the HTML after the page has published?</li>
<li>Are there any assemblies / server controls installed that override the default behaviour a link button?</li>
<li>Try a blank soloution with the bound link button and try to reproduce, then back track by adding asseblies & controls to the project to determine what is causing the issue.</li>
</ol>
<p>Unfortunatly there is not enough information in your question from your code, and screen shots to give you a definative answer at this stage.</p>
http://stackoverflow.com/questions/480498/asp-net-asplinkbutton-with-javascript-disabled/480512#4805122Answer by Ady for ASP.NET: asp:LinkButton with Javascript disabled?Ady2009-01-26T16:59:55Z2009-01-27T13:00:55Z<p>You could use CSS to style a button to look like a link, but this will be very much browser dependant, depending on the CSS implementation.</p>
<p>EDIT: I feel compelled to complete my answer since it's been accepted.</p>
<p>An asp:LinkButton renders to an HTML link, and as such cannot 'post' to a web page, but can only make 'get' requests. To work around this MS use JavaScript to action the post, however if JS is disabled this is not possible.</p>
<p>asp:Button and asp:ImageButton are different. They submit the HTML form by posting to a web page (or get depending on the form attributes) by using true HTML form elements. So these will work without JS intervention. </p>
<p>Some browsers will allow CSS styling to style a button to look like a link, and as such this can be used to work around the issue.</p>
http://stackoverflow.com/questions/410178/does-anyone-use-typed-datasets-in-net/410194#4101942Answer by Ady for Does anyone use typed DataSets in .NET?Ady2009-01-04T00:54:16Z2009-01-04T01:23:06Z<p>We use typed data sets all the time, in fact we use them as a matter of best practice. The reason we do this is to catch errors at compile time rather than using string based lookups for column names that could introduce errors at run time.</p>
<p>I guess, as always, it depends on the scenario and whether you gain any advantage for using them or not.</p>
<p>Normal Row Reference:
<code><pre>oRow["row_pk"]</pre></code></p>
<p>In a typed data set it now becomes:
<code><pre>oRow.row_pk</pre></code></p>
<p>Our data sets usually match the database scema, we use DataAdapters to update the changes to the database using stored procedures. Output parameters update the data set with keys generated from the database.</p>
<p>Obviously you need to run the adapter updates in the right order for all the keys to generate in the right order. You also have to be careful when deleting parent / child rows, and ensure these deletes take place in the right order to prevent database exceptions.</p>
<p>Back when .NET was still 1.1 I read a book on <a href="http://www.microsoft.com/learning/en/us/Books/5354.aspx" rel="nofollow">ADO.NET by David Sceppa</a>, this opened my eyes to what can actually be acheived, and simplified my DAL a lot (using typed data sets). There are a lot of techniques in there that can really help improve your code, I'd highly recommend it.</p>
http://stackoverflow.com/questions/403048/raising-javascript-event-from-an-asp-net-user-control-and-handling-in-asp-net-pag/403060#4030600Answer by Ady for Raising javascript event from an ASP.NET user control and handling in ASP.NET pageAdy2008-12-31T14:24:51Z2008-12-31T14:45:47Z<p>You can simply run the javascript you need from the rendered HTML of your user control. </p>
<p><code><pre>
<a href="javascript:doSomething();">Click Me</a>
</pre></code></p>
<p>By the sounds of things you want to create some form of controller in JavaScript. When the page loads each of your controls register with the controller. Then an action in one of your controls runs a function on the controller, which does something with the controls registered with it.</p>
<p>Your JavaScript could be as simple as:
<code><pre>
var oControls = new Array();</p>
<p>doSomething = function() {
for(var i=0;i<oControls.length;i++) {
var oControl = document.getElementById(oControls[i]);
oControl......
}
}
</pre></code></p>
<p>So you need to register your control by using ScriptManager in your user controls render method.</p>
<p><code><pre>
ScriptManager.RegisterStartupScript(Me, Me.GetType(), "Startup", String.Format("oControls.push('{0}');", ClientID), True);
</pre></code></p>
http://stackoverflow.com/questions/399180/how-can-i-obtain-the-dimensions-of-a-flash-video-file-from-php-code/399191#3991914Answer by Ady for How can I obtain the dimensions of a Flash video file from PHP code?Ady2008-12-30T00:17:00Z2008-12-30T00:26:15Z<p><a href="http://www.ffmpeg.org/" rel="nofollow">ffmpeg</a> is probably your best bet, there is even a <a href="http://ffmpeg-php.sourceforge.net/" rel="nofollow">php module</a> of it.</p>
<p>ffmpeg -i "FileName"</p>
<p>Alternativly you could read the information from the flv file directly by opening the file and reading the meta information.</p>
http://stackoverflow.com/questions/398816/how-to-handle-firefox-inserting-text-elements-between-tags/398842#3988420Answer by Ady for How to handle Firefox inserting text elements between tagsAdy2008-12-29T22:06:49Z2008-12-29T22:15:55Z<p>you could use tagName to check the name of the tag. If undefined then this is your 'phantom' text node.</p>
<p>e.g.
<code><pre>
function getFirstTag(node) {
return ((node.firstChild.tagName) ? node.firstChild : node.firstChild.nextSibling);
}
</pre></code></p>
http://stackoverflow.com/questions/397884/sql-server-authentication-or-integrated-security/397912#3979121Answer by Ady for SQL Server Authentication or Integrated Security?Ady2008-12-29T15:24:54Z2008-12-29T15:24:54Z<p>Personally I would do all application data access through stored procedures. I would set Integrated security to only allow users to run the SP's and not manipulate the data directly. </p>
<p>Advanced access can be given to DB admins to manipulate the data directly when needed. </p>
<p>Group based permissions will provide you with much more flexibility for access rights, and less administrative burden when controlling these with integrated security.</p>
http://stackoverflow.com/questions/346702/problem-with-images-and-stylesheet-while-using-urlrewriter/388487#3884870Answer by Ady for Problem with images and stylesheet while using urlrewriterAdy2008-12-23T09:27:43Z2008-12-23T09:27:43Z<p>~/ will only work for tags that have runat="server" attributes, because this tells asp.net to render the control.</p>
<p>e.g.</p>
<p><link href="~/mycss.css" type="text/css" rel="stylesheet" /></p>
<p>will not render how you expect because asp.net is not rendering the control. Instead you should use.</p>
<p><link runat="server" href="~/mycss.css" type="text/css" rel="stylesheet" /></p>
<p>Alternativly place the css link in the head tag e.g.</p>
<p><head runat="server"><br />
<link href="~/mycss.css" type="text/css" rel="stylesheet" />
<br />
</head></p>
http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/388463#3884631Answer by Ady for Double/incomplete Parameter Url EncodingAdy2008-12-23T09:16:17Z2008-12-23T09:16:17Z<p>AS others have mentioned, if you encode your string first you aviod the issue. </p>
<p>The MVC Framework is encoding characters that it knows it needs to encode, but leaving those that are valid URL characters (e.g. & % ? * /). This is because these are valid URL characters, although they are special chracters in a URL that might not acheive the result you are after.</p>
http://stackoverflow.com/questions/388264/setting-up-a-mac-for-programmers/388440#3884400Answer by Ady for Setting up a Mac for programmersAdy2008-12-23T08:55:43Z2008-12-23T08:55:43Z<p>Install Windows using Boot Camp. You can then dual boot between OSX and Windows, use windows as normal for MS development, and OSX for your other non MS stuff.</p>
http://stackoverflow.com/questions/386200/possible-to-search-multiple-tables-with-a-single-query-msaccess-sql-server/386209#3862091Answer by Ady for Possible to search multiple tables with a single query? [MSAccess/SQL Server]Ady2008-12-22T12:56:34Z2008-12-22T12:56:34Z<p>I'd use full text indexing in SQL server, have a single table with your searchable text, and forign keys in your main tables that link to the search table. This way you can order your results by relevance.</p>
http://stackoverflow.com/questions/386142/ihttphandler-example-required-for-image-type-files-c-asp-net/386176#3861760Answer by Ady for IHttpHandler Example required for Image Type Files C# ASP.NetAdy2008-12-22T12:41:08Z2008-12-22T12:41:08Z<p>How About.
<a href="http://blog.jasonnussbaum.com/?p=104" rel="nofollow">http://blog.jasonnussbaum.com/?p=104</a></p>
<p>Source is available in the downlaod.</p>
<p>If you are resizing GIF you may also want to look into <a href="http://msdn.microsoft.com/en-us/library/aa479306.aspx" rel="nofollow">image quantizing</a>.</p>
http://stackoverflow.com/questions/386122/correct-way-to-escape-characters-in-a-datatable-filter-expression0Correct way to escape characters in a DataTable Filter ExpressionAdy2008-12-22T12:17:07Z2008-12-22T12:20:16Z
<p>Hi </p>
<p>I would like to know if there is a function to correctly escape string literals for filter expressions.</p>
<p>e.g.</p>
<p>DataTable.Select(String.Format("[name] = '{0}'", MyName))</p>
<p>If MyName contains ' or a number of other key characters an exception is generated. The <a href="http://msdn.microsoft.com/en-us/library/system.data.datacolumn.expression.aspx" rel="nofollow">Microsoft documentation</a> indicates that these charaters should be correctly escaped, however there is a bit of confusion on how this is to be done.</p>
<p>I have tried replacing ' with \' and also ['] as indicated in the documentation, however the query still fails.</p>
<p>Many Thanks</p>
http://stackoverflow.com/questions/386122/correct-way-to-escape-characters-in-a-datatable-filter-expression/386134#3861341Answer by Ady for Correct way to escape characters in a DataTable Filter ExpressionAdy2008-12-22T12:20:16Z2008-12-22T12:20:16Z<p>Balls. Might help if I read the comments of the article I cited! </p>
<p>If I replace ' with two single ' the query works.</p>
http://stackoverflow.com/questions/385705/asp-net-intermittent-access-denied-error-when-uploading-files/385803#3858030Answer by Ady for ASP.NET : Intermittent 'Access Denied' Error When Uploading FilesAdy2008-12-22T08:46:29Z2008-12-22T08:46:29Z<p>It might also mean that the file has been locked by another process. e.g. two files being uploaded with the same name at the same time. Or another process is using the file you are attempting to overwrite.</p>
http://stackoverflow.com/questions/384981/div-by-iframe-over/384992#3849921Answer by Ady for div by iframe overAdy2008-12-21T21:43:10Z2008-12-21T21:43:10Z<p>If the video you are talking about is in flash, so long as you set wmode=transparent in the flash embed code, you can place HTML on top of the flash content using css z-index.</p>
http://stackoverflow.com/questions/384683/if-you-are-working-in-a-non-english-speaking-country-do-you-write-your-developmen/384698#3846982Answer by Ady for If you are working in a non-English speaking country do you write your development documentation in your mother tongue?Ady2008-12-21T17:26:36Z2008-12-21T17:26:36Z<p>i have a friend (English) thats works in Spain for EA games. He says its a nightmare, although keyworks are still in English, the varaible names are all over the place. Some in spanish and some in english, and even combinations of both!</p>
http://stackoverflow.com/questions/384639/how-to-include-javascript-in-xml-document/384667#3846674Answer by Ady for How to include Javascript in xml-document?Ady2008-12-21T16:58:33Z2008-12-21T17:16:55Z<p>If I get you, you want an XML document to run javascript when viewed in a browser?</p>
<p>This is not part of the XML standard, and as such will not be suppoted until it is (I assume this will never be supported because XML is not intended for display, but data). If you are talking about XHTML then this is a different matter.</p>
<p>-- </p>
<p>Edit: just to clarify my answer. </p>
<p>XML was never intended to be a display markup like HTML, thats why XHTML was developed (HTML that conforms to XML standards). Browsers have been made to interpret XHTML in a certain way, but XML is simply raw data. </p>
<p>If you want your XML to run additions such as JavaScript you will want to consider using XSLT to transform your XML into XHTML and therefore take advantage of a browsers capabilities.</p>
http://stackoverflow.com/questions/383979/dynamically-construct-querystring-behaviour-in-ie-and-ff-chrome/383987#3839875Answer by Ady for Dynamically construct querystring behaviour in IE and FF / ChromeAdy2008-12-21T01:40:54Z2008-12-21T01:51:46Z<p>The # indicates a named anchor in HTML and therefore is not part of the querystring, perhaps you sould correctly URL encode your id's. </p>
<p>e.g. #Tab1 becomes %35Tab1</p>
<p>Try using escape. e.g.</p>
<p>'Controls/Network/NetworkDetail.aspx?' + rnd() + '&CtlId=' + escape(Id)</p>
http://stackoverflow.com/questions/276730/what-are-your-favourite-404-error-messages/276764#2767640Answer by Ady for what are your favourite 404 error messages?Ady2008-11-10T00:35:45Z2008-11-10T00:35:45Z<p>B3ta has some goodn's</p>
<p><a href="http://www.b3ta.com/404" rel="nofollow">http://www.b3ta.com/404</a></p>
http://stackoverflow.com/questions/258138/sql-server-2000-personal-edition-sql-query-analyzer-is-not-appearing/258145#2581451Answer by Ady for SQL Server 2000 Personal Edition: SQL Query Analyzer is not appearingAdy2008-11-03T08:40:41Z2008-11-03T08:40:41Z<p>Sounds odd. Perhaps a re-install might be needed.</p>
<p>Could you clarify your meaning of "there aint no window appearing for the query analyzer". What type of window, the application window, or a query window?</p>
http://stackoverflow.com/questions/256832/c-fill-a-combo-box-with-a-datatable/256864#2568640Answer by Ady for C# - Fill a combo box with a DataTableAdy2008-11-02T12:49:20Z2008-11-02T12:49:20Z<p>Are you applying a RowFilter to your DefaultView later in the code? This could change the results returned.</p>
<p>I would also avoid using the string as the display member if you have a direct reference the the data column I would use the object properties:</p>
<pre><code>mnuActionLanguage.ComboBox.DataSource = lTable.DefaultView;
mnuActionLanguage.ComboBox.DisplayMember = lName.ColumnName;</code></pre>
<p>I have tried this with a blank form and standard combo, and seems to work for me.</p>
http://stackoverflow.com/questions/256077/static-finalizer/256086#2560863Answer by Ady for Static FinalizerAdy2008-11-01T20:40:51Z2008-11-01T20:40:51Z<p>I would question what you are loading in your static methods that need to be released. I certainly wouldn't recommend doing these things in a static method.</p>
<p>That said, your static method could instanciate an object that has a finalise method.</p>
http://stackoverflow.com/questions/255785/does-a-tool-exist-for-dynamically-altering-running-javascript-in-a-browser/255793#255793-2Answer by Ady for Does a tool exist for dynamically altering running javascript in a browser?Ady2008-11-01T17:20:28Z2008-11-01T18:50:03Z<p>JavaScript has an <a href="http://www.w3schools.com/jsref/jsref_eval.asp" rel="nofollow">eval</a>() function, you can build your string and then run it.</p>
<pre><code><script type="text/javascript" language="javascript">
example = function() {alert('first');}
example();
eval("example = function() {alert('second');}");
example();
</script>
</code></pre>
<p>The code above is an example of how eval can be used to change existing code.</p>
<p>@eyelidlessness, this shows that you <i>can</i> change existing code. Your edit to the question clarifies the original question, but therefore make my answer look invalild, but at the time it was originally posted it was a valid point, the original poster should have made the question clearer.</p>
http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/388463#388463Comment by Ady on Double/incomplete Parameter Url EncodingAdy2009-09-09T10:55:07Z2009-09-09T10:55:07ZIt's not because they are system used, but because they are not valid characters according to the URL specification that they are encoded. However other characters that define meaning in a URL are not encoded because the are perfectly valid.http://stackoverflow.com/questions/562010/asp-net-2-0-datagrid-with-tbody-thead/562212#562212Comment by Ady on ASP.NET 2.0 - DataGrid with tbody / theadAdy2009-02-19T01:52:36Z2009-02-19T01:52:36ZCould you explain further? The Render method of the control expets an HtmlTextWriter as an input, it's in the definition! What is your objection to MemoryStream, etc.http://stackoverflow.com/questions/483313/why-is-my-aspx-page-rendering-different-html-in-firefox-and-ie/483464#483464Comment by Ady on Why is my Aspx page rendering different HTML in FireFox and IEAdy2009-01-27T14:05:44Z2009-01-27T14:05:44ZOf course if this is an AJAX page where the controls are created after the first page request then viewing the source in this method may not be possible.http://stackoverflow.com/questions/483313/why-is-my-aspx-page-rendering-different-html-in-firefox-and-ie/483345#483345Comment by Ady on Why is my Aspx page rendering different HTML in FireFox and IEAdy2009-01-27T13:26:38Z2009-01-27T13:26:38ZI don't think adaptive rendering would cause a link button to render as a span.http://stackoverflow.com/questions/483313/why-is-my-aspx-page-rendering-different-html-in-firefox-and-ie/483375#483375Comment by Ady on Why is my Aspx page rendering different HTML in FireFox and IEAdy2009-01-27T13:24:31Z2009-01-27T13:24:31ZThere is also a quote missing for the text attribute. But these should all cause the compiler to fail.http://stackoverflow.com/questions/483313/why-is-my-aspx-page-rendering-different-html-in-firefox-and-ieComment by Ady on Why is my Aspx page rendering different HTML in FireFox and IEAdy2009-01-27T13:09:36Z2009-01-27T13:09:36ZIf the code above is what you have used, it shouldn't compile.http://stackoverflow.com/questions/415291/best-way-to-combine-2-or-more-byte-arrays-in-cComment by Ady on Best way to combine 2 or more byte arrays in C#Ady2009-01-06T03:01:31Z2009-01-06T03:01:31ZLove it, "best" depends on what your requirements are.http://stackoverflow.com/questions/410178/does-anyone-use-typed-datasets-in-net/410194#410194Comment by Ady on Does anyone use typed DataSets in .NET?Ady2009-01-04T01:12:05Z2009-01-04T01:12:05ZYep, they are definatly object references.http://stackoverflow.com/questions/410178/does-anyone-use-typed-datasets-in-net/410194#410194Comment by Ady on Does anyone use typed DataSets in .NET?Ady2009-01-04T01:01:01Z2009-01-04T01:01:01ZObject references are used under the hood, rather than string lookups. This has the result of running (slightly) faster as there are no string comparisons.http://stackoverflow.com/questions/408880/mass-memory-default-directory/408890#408890Comment by Ady on Mass Memory Default directoryAdy2009-01-03T11:18:00Z2009-01-03T11:18:00ZEng mentions this is for a windows mobile device, so probably not mass storage device. Drive letter allocation is differrent on windows mobile, but your suggestion is what I would recommend never the less.http://stackoverflow.com/questions/403689/does-anyone-know-of-a-gui-less-application-that-can-be-called-from-javascript-toComment by Ady on Does anyone know of a GUI-less application that can be called from JavaScript to create and save desktop screen shots?Ady2008-12-31T18:28:49Z2008-12-31T18:28:49ZDo your users know of the good old Print Screen button and email? (I assume from your mention of c# they are PC based).http://stackoverflow.com/questions/403048/raising-javascript-event-from-an-asp-net-user-control-and-handling-in-asp-net-pag/403080#403080Comment by Ady on Raising javascript event from an ASP.NET user control and handling in ASP.NET pageAdy2008-12-31T14:39:16Z2008-12-31T14:39:16ZYou should probably modify your original question to be more clear, rather than posting an answer to the question as a replay to an answer. It gets a bit confusing otherwise.http://stackoverflow.com/questions/398816/how-to-handle-firefox-inserting-text-elements-between-tagsComment by Ady on How to handle Firefox inserting text elements between tagsAdy2008-12-29T22:13:25Z2008-12-29T22:13:25ZI've seen this before, can't remember the browser make / version though.http://stackoverflow.com/questions/398599/how-good-is-best-kept-secrets-of-peer-code-reviewComment by Ady on How good is "Best Kept Secrets of Peer Code Review" ?Ady2008-12-29T20:45:52Z2008-12-29T20:45:52Zshould this be wiki?http://stackoverflow.com/questions/397884/sql-server-authentication-or-integrated-security/397920#397920Comment by Ady on SQL Server Authentication or Integrated Security?Ady2008-12-29T15:29:18Z2008-12-29T15:29:18ZI like your thinking.