User brendan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T06:52:30Zhttp://stackoverflow.com/feeds/user/225http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1907094/wordpress-posts-dont-show-up/1907115#19071150Answer by brendan for Wordpress posts don't show upbrendan2009-12-15T12:29:47Z2009-12-15T12:29:47Z<p>If you switched hosts the first thing I would check is your database connection string stored in your wp-config.php file.</p>
<p>You'll need to update this with the path/user/password to your new database.</p>
http://stackoverflow.com/questions/1904864/word-document-converted-it-to-htm-need-to-format-email-accordingly-c-net/1904909#19049090Answer by brendan for word document, converted it to .htm, need to format email accordingly - C#.NETbrendan2009-12-15T02:49:08Z2009-12-15T02:49:08Z<p>I think your best strategy is to upload the images to some site, not try to embed them in the email. So parse your doc and create .htm, take any images and upload them to some directory, then update .htm to reference that location/url.</p>
http://stackoverflow.com/questions/1883491/updating-textbox-on-the-client-with-javascript-and-reading-the-value-from-the-ser/1883569#18835690Answer by brendan for Updating TextBox on the client with Javascript and reading the value from the Serverbrendan2009-12-10T19:57:34Z2009-12-10T19:57:34Z<p>One alternative is to wrap your text box in an Update Panel and not use javascript but rather update it's value server side.</p>
http://stackoverflow.com/questions/1859990/how-to-retrieve-all-of-the-records-which-dont-have-any-reference-in-another-table/1860016#18600161Answer by brendan for How to retrieve all of the records which dont have any reference in another table?brendan2009-12-07T13:34:39Z2009-12-07T13:34:39Z<pre><code>Select a.*
From TableA a
Left Outer Join TableB b on b.TableA_id=a.id
Where b.id is NULL
</code></pre>
http://stackoverflow.com/questions/350291/when-is-it-ok-to-disable-event-validation-on-a-page1When is it ok to disable event validation on a page?brendan2008-12-08T17:49:09Z2009-12-03T15:43:31Z
<p>I am using ASP.NET ajax to dynamically add/remove controls from a page without using full postbacks. The UI is very complicated. Under certain scenarios, when a control on the page causes a full postback, after changing the controls via async postbacks, I get this error:</p>
<p><a href="http://stackoverflow.com/questions/228969/aspnet-invalid-postback-or-callback-argument-event-validation-is-enabled-using">http://stackoverflow.com/questions/228969/aspnet-invalid-postback-or-callback-argument-event-validation-is-enabled-using</a></p>
<p>I can fix it by setting EnableEventValidation="false" at the page level. </p>
<p>What are the implications of doing this? Are there times when it is ok to do this or is this a hack? </p>
http://stackoverflow.com/questions/1810654/jquery-where-input-is-checked/1810671#18106712Answer by brendan for jQuery where INPUT is checkedbrendan2009-11-27T21:20:48Z2009-11-27T23:53:49Z<p>I think this should do it:</p>
<pre><code>var list = $("input[name*='popSearch']:checked")
</code></pre>
http://stackoverflow.com/questions/1810028/how-to-print-1-to-100-without-any-looping-using-c/1810065#1810065-1Answer by brendan for How to print 1 to 100 without any looping using C#brendan2009-11-27T18:15:25Z2009-11-27T19:58:46Z<pre><code>public void Main()
{
printNumber(1);
}
private void printNumber(int x)
{
Console.WriteLine(x.ToString());
if(x<101)
{
x+=1;
printNumber(x);
}
}
</code></pre>
http://stackoverflow.com/questions/1809555/net-existence-chicken-and-eggs/1809576#180957610Answer by brendan for .Net existence: chicken and eggs?brendan2009-11-27T16:13:37Z2009-11-27T16:22:29Z<p>I think the preferred way to do this is to create an installer for your app and make the .Net Framework a pre-req that the installer checks for. </p>
<p>You can also include the .Net Framework re-distributable components so your installer will install it if it is not found.</p>
<p><a href="http://stackoverflow.com/questions/419639/installing-net-framework-with-my-app-using-msi">See this question for more info</a>.</p>
http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800074#18000740Answer by brendan for Does this code prevent SQL injection?brendan2009-11-25T21:26:31Z2009-11-25T23:24:16Z<p>This <a href="http://msdn.microsoft.com/en-us/library/ms161953.aspx" rel="nofollow">MSDN article</a> covers most of the stuff you need to look out for (I'm afraid to say all when it comes to SQL injection).</p>
<p>But I will echo everyone else's sentiment of parameters parameters parameters. </p>
<p>As for your example some gotchas [Edit: Updated these]: </p>
<ul>
<li><p><strike>wouldn't the string "1 OR 1=1" allow the user to get back everything </strike></p></li>
<li><p><strike>or worse "1; drop table sometablename"</strike></p></li>
</ul>
<p>According to the article you want to check for:</p>
<blockquote>
<p>; - Query delimiter.</p>
<p>' - Character data string delimiter.</p>
<p>-- - Comment delimiter.</p>
<p>/* ... <em>/ - Comment delimiters. Text
between /</em> and */ is not evaluated by
the server.</p>
<p>xp_ - Used at the start of the name of
catalog-extended stored procedures,
such as xp_cmdshell.</p>
</blockquote>
http://stackoverflow.com/questions/1790839/adding-a-new-user-to-crm-4-0-using-sdk/1799481#17994810Answer by brendan for Adding a new user to CRM 4.0 using sdkbrendan2009-11-25T19:43:29Z2009-11-25T19:43:29Z<p>I have code that creates users for us based on users in another system so I can't exactly paste it all here - most of it wouldn't make sense to you - but this is the core of it:</p>
<p>[In VB sorry :-) - also when posting VB here I find I need to use '//' to indicate a comment to make the formatting correct]</p>
<pre><code>Public Sub CreateNewUser()
Dim s as mscrm.CrmService = GetMyService()
Dim newUser as New mscrm.systemuser()
With newUser
.domainname = "domain\user"
.firstname = "Stan"
.lastname = "Molda"
//set anything else you want here
End With
Dim userGuid as guid = s.Create(newUser)
//Next we need to assign the user a role
AssignRole(userGuid)
//Finally we need to assign them to the correct Time Zone
SetUserTimeZone(userGuid)
End Sub
Public Sub AssignRole(g as Guid)
Dim s as mscrm.CrmService = GetMyService()
Dim req As New mscrm.AssignUserRolesRoleRequest()
req.UserId = g
req.RoleIds = New Guid() {GetTheGuidForMyPrimaryRole()}
s.Execute(req)
End Sub
Public Sub SetUserTimeZone(g as Guid)
Dim s as mscrm.CrmService = GetMyService()
Dim r As New mscrm4.RetrieveUserSettingsSystemUserRequest()
r.ColumnSet = New mscrm3.AllColumns()
r.EntityId = New Guid(g)
Dim resp As mscrm.RetrieveUserSettingsSystemUserResponse = CType(s.Execute(r), mscrm.RetrieveUserSettingsSystemUserResponse)
Dim settings As mscrm.usersettings = CType(resp.BusinessEntity, mscrm.usersettings)
settings.timezonecode = New mscrm.CrmNumber
settings.timezonecode.Value = OUR_TIME_ZONE_CONSTANT
Dim update As New mscrm.UpdateUserSettingsSystemUserRequest()
update.Settings = settings
update.UserId = g
s.Execute(update)
End Sub
</code></pre>
http://stackoverflow.com/questions/1799260/modify-data-in-bound-field-and-template-field/1799320#17993201Answer by brendan for modify data in bound field and template fieldbrendan2009-11-25T19:15:47Z2009-11-25T19:15:47Z<p>Couple of thoughts:</p>
<ol>
<li>You could definitely do this in a template field.</li>
<li><p>Might be easiest to do in the query, just tack on </p>
<p>select mycolums, totaldata/1048576 as TotalDataInMB
From Table</p></li>
<li><p>You also could override the OnRowDataBound event and do the calc there.</p></li>
</ol>
http://stackoverflow.com/questions/1724789/how-can-i-create-an-outlook-pst-file-using-net1How can I create an Outlook PST file using .Net?brendan2009-11-12T19:33:15Z2009-11-25T16:13:06Z
<p>I'm writing an app that will manipulate Outlook data. I want to make a backup of that data first and am hoping I could just loop through the contact/calendar items, etc and write them out to a PST file.</p>
<p>How can I write the contents of 1 or several Outlook folders to a PST using .Net? [vb or c# no matter]</p>
http://stackoverflow.com/questions/1724789/how-can-i-create-an-outlook-pst-file-using-net/1798035#17980351Answer by brendan for How can I create an Outlook PST file using .Net?brendan2009-11-25T16:13:06Z2009-11-25T16:13:06Z<p>I was able to piece this code together from a variety of samples around the internet and MSDN docs. This will allow you to choose an outlook high level folder and will backup all folders underneath. In my case I didn't actually want mail folders so I exclude them. </p>
<pre><code> Const BACKUP_PST_PATH As String = "C:\backup.pst"
Dim oFolder As Outlook.MAPIFolder = Nothing
Dim oMailbox As Outlook.MAPIFolder = Nothing
Dim app As New Outlook.Application()
Dim ns As Outlook.NameSpace = app.GetNamespace("MAPI")
Try
//if the file doesn not exist, outlook will create it
ns.AddStore(BACKUP_PST_PATH)
oFolder = ns.Session.Folders.GetLast()
oMailbox = ns.PickFolder()
For Each f As Outlook.Folder In oMailbox.Folders
If f.DefaultItemType <> Microsoft.Office.Interop.Outlook.OlItemType.olMailItem And f.FolderPath <> pst.FolderPath Then
f.CopyTo(pst)
End If
Next
ns.RemoveStore(oFolder)
Catch ex As Exception
ns.RemoveStore(oFolder)
IO.File.Delete(BACKUP_PST_PATH)
Throw ex
End Try
</code></pre>
http://stackoverflow.com/questions/1797229/mysql-insert-into/1797264#17972644Answer by brendan for Mysql, "insert into“brendan2009-11-25T14:30:06Z2009-11-25T15:23:02Z<p>You might want something like this:</p>
<pre><code>Insert Into mytable(column1,column2,column3,column4)
Select 'value1',filed1, filed2,filed3 from anothertable where filed4=a_varible
</code></pre>
<p>You can include a hard coded value in your select clause and it will select that as a constant for each row.</p>
http://stackoverflow.com/questions/1772941/how-can-i-insert-a-character-after-every-n-characters-in-javascript1How can I insert a character after every n characters in javascript? brendan2009-11-20T20:07:49Z2009-11-20T20:20:42Z
<p>I have a string: "The quick brown fox jumps over the lazy dogs."</p>
<p>I want to use javascript (possibly with jQuery) to insert a character every <em>n</em> characters. For example I want to call:</p>
<pre><code>var s = "The quick brown fox jumps over the lazy dogs.";
var new_s = UpdateString("$",5);
// new_s should equal "The q$uick $brown$ fox $jumps$ over$ the $lazy $dogs.$"
</code></pre>
<p>The goal is to use this function to insert <a href="http://stackoverflow.com/questions/226464/soft-hyphen-in-html-wbr-vs">&shy</a> into long strings to allow them to wrap. Maybe someone knows of a better way?</p>
http://stackoverflow.com/questions/1725522/mdyy-sql-format/1725547#17255472Answer by brendan for MDYY SQL Format brendan2009-11-12T21:29:32Z2009-11-12T21:29:32Z<pre><code>SET DATEFORMAT mdy
</code></pre>
<p>See the set dateformat docs : <a href="http://technet.microsoft.com/en-us/library/ms189491.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/ms189491.aspx</a></p>
http://stackoverflow.com/questions/1716053/asp-net-report-viewer-control-browser-compatability-issue/1716085#17160850Answer by brendan for ASP.NET Report Viewer control browser compatability issuebrendan2009-11-11T15:50:46Z2009-11-11T15:50:46Z<p>My understanding is that the Report Viewer control is only compatible with IE6,7,8.</p>
<p>This page elaborates on it a bit but many of the features are only compatible with IE:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms251673%28VS.80%29.spx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms251673%28VS.80%29.spx</a></p>
<p>Also, a workaround for the Chrome distortion issues can be found here: <a href="http://www.mazsoft.com/blog/post/2009/08/13/ReportViewer-control-toolbar-in-Google-Chrome-browser.aspx" rel="nofollow">http://www.mazsoft.com/blog/post/2009/08/13/ReportViewer-control-toolbar-in-Google-Chrome-browser.aspx</a> </p>
http://stackoverflow.com/questions/1715635/stored-proc-and-sqlcommand-timeout/1715864#17158641Answer by brendan for Stored Proc and SqlCommand Timeoutbrendan2009-11-11T15:20:33Z2009-11-11T15:20:33Z<p>My instinct said that the procedure would still execute so I threw together a simple test.</p>
<p>SQL:</p>
<pre><code>Create Procedure TestDelay
AS
waitfor delay '00:00:40'
update table_1
set dt = getdate()
</code></pre>
<p>And in VB.Net (same as C# for this purpose):</p>
<pre><code> Dim con As New SqlConnection(myconnectionstring)
Dim com As New SqlCommand("TestDelay", con)
com.CommandType = CommandType.StoredProcedure
con.Open()
Try
com.ExecuteNonQuery()
Catch ex As Exception
con.Close()
Response.Write(ex.Message)
End Try
</code></pre>
<p>The result? <strong>The procedure did not complete after the timeout.</strong> I checked what was happening during a trace in SQL profiler and sure enough SQL appears to wrap the call in a transaction and must roll that transaction back on the timeout.</p>
<p>Note: This test was run against SQL 2005 but I'd suspect the results to be similar in other versions.</p>
http://stackoverflow.com/questions/1702899/whats-a-duo-file/1702975#17029750Answer by brendan for What's a .duo file?brendan2009-11-09T18:51:16Z2009-11-09T18:51:16Z<p>I can't seem to find any info on the file extension : <a href="http://filext.com/alphalist.php?extstart=" rel="nofollow">http://filext.com/alphalist.php?extstart=</a>^D</p>
<p>Additionally - it does not appear to be a valid <a href="http://msdn.microsoft.com/en-us/library/8k0zafxb.aspx" rel="nofollow">Visual Studio file extension</a> - are you using any 3rd party tools that might generate this? What are you using for source control?</p>
http://stackoverflow.com/questions/1701973/clear-all-divs-contents-inside-a-div/1701983#17019831Answer by brendan for clear all divs' contents inside a divbrendan2009-11-09T16:05:25Z2009-11-09T16:10:38Z<pre><code>$("#masterdiv div").text("");
</code></pre>
http://stackoverflow.com/questions/1663950/reworking-a-distributor-customer-tangle-in-microsoft-dynamics-crm-3-0/1677256#16772561Answer by brendan for Reworking a Distributor/Customer tangle in Microsoft Dynamics CRM 3.0brendan2009-11-04T22:55:20Z2009-11-04T22:55:20Z<p>To be honest, I don't think it would be a ton of code to unmuck this situation. I'll pseudo code if for you to give you the basic idea - I think in the long run this might end up being the best long term solution.</p>
<p>First create a Distributor custom entity. Create a relationship between contacts/accounts as appropriate. Then take the pseudo code below - fill in the stuff specific to your situation. Run it. Then you can remove those unnecessary properties and you should be good to go. </p>
<pre><code>CRmService s = GetMyService();
BusinessEntityCollection objects_to_clean = s.RetrieveMultiple(...some query to get them all...);
foreach (BusinessEntity be in objects_to_clean.BusinessEntities)
{
DistributorEntity de = new DistributorEntity;
//set all necessary fields here...
de.field = be.field;
Guid distributorguid = s.Create(de);
be.distributorid = distributorguid ;
s.Update(be);
}
</code></pre>
http://stackoverflow.com/questions/1676503/what-is-the-difference-between-httpcontext-current-response-and-page-response/1676516#16765163Answer by brendan for What is the difference between HttpContext.Current.Response and Page.Response?brendan2009-11-04T20:51:11Z2009-11-04T20:51:11Z<p>Well for starters Page.Response implies that you have a current, valid Page object, HttpContext is static and can be called at any time - like in your Global.asax or and HttpModule/HttpHandler.</p>
http://stackoverflow.com/questions/1668757/using-a-subquery-in-an-insert-statement-in-sql-server-2005/1668805#16688051Answer by brendan for Using a SubQuery in an Insert Statement in SQL Server 2005brendan2009-11-03T17:13:12Z2009-11-03T17:13:12Z<p>I think you could just re-format your sql and do it this way:</p>
<pre><code>Insert into Carfeature (RecID,FeatureID) select Max(RecID), @FeatureId from record
</code></pre>
http://stackoverflow.com/questions/1668162/updating-a-div-section-on-a-content-page-from-an-event-handler-within-appcode/1668203#16682030Answer by brendan for Updating a div section on a content page from an event handler within app_codebrendan2009-11-03T15:52:40Z2009-11-03T15:52:40Z<p>You want to do something like this I think - Declare an event in your custom class. Raise that event on the button click. In your content form handle the raised event:</p>
<p>Custom Class:</p>
<pre><code>Public Event ButonWasClicked(sender as Object, e as EventArgs)
Private Sub HandleClick(sender as Object, e as EventArgs) Handles btn.Click
RaiseEvent ButonWasClicked(sender,e)
End Sub
</code></pre>
<p>Content Form:</p>
<pre><code> Private Sub HandleCustomClassClick(sender as Object, e as EventArgs) Handles MyCustomClass.ButtonWasClicked
MyDiv.Controls.Add(New LiteralControl("Custom class button was clicked!!!"))
End Sub
</code></pre>
http://stackoverflow.com/questions/1664392/content-from-divs-into-textarea/1664435#16644352Answer by brendan for content from divs into textareabrendan2009-11-02T23:49:10Z2009-11-03T00:41:31Z<p>If you're looking for pure javascript this would work - though things like this are very easily handled in frameworks like jQuery:</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<script type="text/javascript">
function CopyDivsToTextArea()
{
var divs = document.getElementsByTagName("div");
var textToTransfer = "";
var pattern = new RegExp("test1");
for(var i=0;i<divs.length;i++)
{
if(pattern.test(divs[i].className))
{
textToTransfer += (divs[i].innerText || divs[i].textContent);
}
}
document.getElementById("ta").value = textToTransfer;
}
</script>
</head>
<body>
<div class="test1" > Example1 </div >
<div class="test2" > Example2 </div >
<div class="test1" > Example3 </div >
<div class="test3" > Example4 </div >
<br />
<textarea id="ta" cols="50" rows="20"></textarea>
<br />
<input type="button" id="btn" value="Button" onclick="CopyDivsToTextArea();" />
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1664514/how-to-insert-values-into-vb-net-dictionary-on-instantiation/1664533#16645331Answer by brendan for How to insert values into VB.NET Dictionary on instantiation?brendan2009-11-03T00:18:26Z2009-11-03T00:25:23Z<p>I do not believe this is currently possible in VB.Net. If you need to do this frequently you could just inherit from the Dictionary class and implement it yourself.</p>
<p>It might look something like this:</p>
<pre><code>Public Class IntializableDictionary
Inherits Dictionary(Of Int32, String)
Public Sub New(ByVal args() As KeyValuePair(Of Int32, String))
MyBase.New()
For Each kvp As KeyValuePair(Of Int32, String) In args
Me.Add(kvp.Key, kvp.Value)
Next
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/1664361/asp-net-how-do-you-debug-dynamically-loaded-user-controls-using-loadcontrolstri/1664366#16643663Answer by brendan for ASP.NET: How do you debug dynamically loaded user controls using LoadControl(string path);brendan2009-11-02T23:26:59Z2009-11-02T23:36:43Z<p>If everything is part of the same solution and built in debug - I believe you should be able to just place a breakpoint in your user control and it will get hit.</p>
<p>Alternatively, in your project that contains the user control you could use Ctrl-Alt-P to attach the project to the IIS process (or WebDev.WebServer process if you're using Visual Studios built in web server aka Cassini). This way you could debug that project on it's own.</p>
http://stackoverflow.com/questions/1663933/clickonce-deployment-cleaning-up-older-versions-in-the-server/1663987#16639870Answer by brendan for ClickOnce deployment: Cleaning up older versions in the server?brendan2009-11-02T21:58:37Z2009-11-02T21:58:37Z<p>If you're talking about the older versions that remain the in \Application Files\ directory, I think you have to clean those up manually.</p>
http://stackoverflow.com/questions/1663510/remoting-is-an-object-remote/1663634#16636344Answer by brendan for Remoting - Is an object remote?brendan2009-11-02T20:53:58Z2009-11-02T20:53:58Z<pre><code> if(System.Runtime.Remoting.RemotingServices.IsTransparentProxy(myObject))
Console.WriteLine("Yay - my object is a remoted object.");
else
Console.WriteLine("Boo - my object is not a remoted object.");
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.remotingservices.istransparentproxy.aspx" rel="nofollow">MSDN Docs on IsTransparentProxy</a></p>
http://stackoverflow.com/questions/1663208/how-refresh-a-ajax-updatepanel-from-another-form/1663232#16632322Answer by brendan for How "refresh" a AJAX UpdatePanel from another form ?brendan2009-11-02T19:38:51Z2009-11-02T19:38:51Z<p>As long as they are on the same page you can do it via javascript I think:</p>
<pre><code><div id="Container" onclick="__doPostBack('UpdatePanel1', '');">
</code></pre>
<p>Ref: <a href="http://encosia.com/2007/07/13/easily-refresh-an-updatepanel-using-javascript/" rel="nofollow">http://encosia.com/2007/07/13/easily-refresh-an-updatepanel-using-javascript/</a></p>
<p>Though I think in .Net having 2 forms on the same page is a little weird - only one can be <em>runat=server</em></p>
http://stackoverflow.com/questions/1881585/is-there-a-tool-to-automatically-replace-a-bunch-of-guids-with-dynamically-generaComment by brendan on Is there a tool to automatically replace a bunch of GUIDs with dynamically-generated ones?brendan2009-12-10T15:08:14Z2009-12-10T15:08:14Zwell yes, what tools/language are you looking at using?http://stackoverflow.com/questions/1880988/ms-crm-cant-add-users-after-database-restoreComment by brendan on MS CRM can't add users after database restorebrendan2009-12-10T14:59:44Z2009-12-10T14:59:44ZHave definitely seen this before - my suspicion is that mscrm actually writes something to AD but I was never able to pin it down.http://stackoverflow.com/questions/1859598/create-a-salesorderdetail-entity-with-dynamic-entity-in-ms-crm-4-0Comment by brendan on Create a salesorderdetail entity with Dynamic entity in MS CRM 4.0brendan2009-12-07T12:25:28Z2009-12-07T12:25:28ZIf you wrap your call in a try catch and inspect the SoapException.Detail.OuterXML property you can usually get a more detailed error.http://stackoverflow.com/questions/1826893/javascript-security-cross-scripting-on-same-server/1826932#1826932Comment by brendan on Javascript security / cross scripting on same serverbrendan2009-12-01T15:34:35Z2009-12-01T15:34:35ZIn windows it's the same, you can add an entry to your hosts file located at - \Windows\system32\drivers\etc\http://stackoverflow.com/questions/1815987/why-doesnt-this-javascript-run-in-firefox/1815995#1815995Comment by brendan on Why doesn't this JavaScript run in Firefox?brendan2009-11-29T16:37:16Z2009-11-29T16:37:16ZRight. Typo - fixed. :-)http://stackoverflow.com/questions/1815816/using-reflection-for-this-is-there-another-wayComment by brendan on using reflection for this, is there another way?brendan2009-11-29T15:36:31Z2009-11-29T15:36:31ZIf all you have is 2 strings I think reflection is all you can use here.http://stackoverflow.com/questions/1810028/how-to-print-1-to-100-without-any-looping-using-c/1810065#1810065Comment by brendan on How to print 1 to 100 without any looping using C#brendan2009-11-27T19:59:22Z2009-11-27T19:59:22Zdoh! fixed now :-)http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800074#1800074Comment by brendan on Does this code prevent SQL injection?brendan2009-11-25T21:44:39Z2009-11-25T21:44:39ZUpdated with a possible gotcha in your code, will try to think of more.http://stackoverflow.com/questions/1800013/does-this-code-prevent-sql-injection/1800055#1800055Comment by brendan on Does this code prevent SQL injection?brendan2009-11-25T21:28:11Z2009-11-25T21:28:11ZRight but if we just put - 'oh check for x and y and z' and didn't harp on how important paramterized queries are some noob 6 months from now will find this and think just cleaning x and y and z are the best way to stop SQL injection.http://stackoverflow.com/questions/1772941/how-can-i-insert-a-character-after-every-n-characters-in-javascriptComment by brendan on How can I insert a character after every n characters in javascript? brendan2009-11-20T20:26:01Z2009-11-20T20:26:01ZPossibly, but a client side solution is more easily implemented for my current predicament.http://stackoverflow.com/questions/1772941/how-can-i-insert-a-character-after-every-n-characters-in-javascriptComment by brendan on How can I insert a character after every n characters in javascript? brendan2009-11-20T20:15:36Z2009-11-20T20:15:36ZThe browser won't wrap within a word, I have long words like "ThisIsAStupidLabelThatOneOfMyUsersWillTryToMakeInMyApplication"http://stackoverflow.com/questions/1724789/how-can-i-create-an-outlook-pst-file-using-net/1724813#1724813Comment by brendan on How can I create an Outlook PST file using .Net?brendan2009-11-12T19:41:20Z2009-11-12T19:41:20ZThat is reading a PST not creating/writing to one isn't it?http://stackoverflow.com/questions/1715275/read-text-file-within-a-net-projectComment by brendan on Read text file within a .NET projectbrendan2009-11-11T13:50:16Z2009-11-11T13:50:16ZWhy not just create a stored procedure for each long script?http://stackoverflow.com/questions/1668757/using-a-subquery-in-an-insert-statement-in-sql-server-2005/1668801#1668801Comment by brendan on Using a SubQuery in an Insert Statement in SQL Server 2005brendan2009-11-03T17:13:37Z2009-11-03T17:13:37Zbeat me by 11 seconds :-)http://stackoverflow.com/questions/1664392/content-from-divs-into-textarea/1664435#1664435Comment by brendan on content from divs into textareabrendan2009-11-03T00:42:45Z2009-11-03T00:42:45Zgood points Tim, updated the example - just something I threw together, not 100% vetted for all scenarios. Thanks!