User Anders - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:25:59Z http://stackoverflow.com/feeds/user/25515 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/753337/is-it-possible-to-set-the-image-alignment-of-a-picturebox-in-vb-net 0 Is it possible to set the image alignment of a PictureBox in VB.NET? Anders 2009-04-15T19:33:16Z 2009-11-18T20:00:04Z <p>I have a <code>PictureBox</code> that is docked in the upper left corner of a form. It is contained inside of a <code>SplitContainer</code>, and the <code>PictureBox</code> is set to Fill the side of the panel that it resides:</p> <pre><code> SplitContainer: ___________________ | _________ &gt; | | | &gt; | | LogoBox | &gt; | |_________| &gt; |___________________&gt; </code></pre> <p>I have the <code>SizeMode</code> set to Zoom so that the image will be resized to fit the bounds of the <code>PictureBox</code>. By default, the image is centered with this <code>SizeMode</code>. I am wondering if it is possible to force the image to be left-aligned instead of centered.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/820866/is-it-possible-to-duplicate-the-following-credential-process-in-vb-net 2 Is it possible to duplicate the following credential process in VB.NET? Anders 2009-05-04T16:41:59Z 2009-11-16T17:14:08Z <h1>Solution (kinda):</h1> <p>Turns out this impersonation with .NET's security only allows application-level access. Since the COM object is at the system level, the impersonated user still cannot instantiate it. I figured this out by right-clicking the executable and selecting "Run As...", the program functioned fine. I found out that launches the program with system access (assuming the user you are running it with has those credentials). Now I am in the process of creating an external program that will launch this application using this method.</p> <p>Thanks for the tips :D</p> <p><hr /></p> <p>I have a windows XP installation on a virtual machine. It is part of my domain, but the logged in user is a local user only. Obviously, if I try to access a network share it will prompt for a user/password:</p> <p><img src="http://i40.tinypic.com/wchl5l.jpg" alt="alt text" /></p> <p>The program I am testing out on the virtual machine uses a COM object to interface with data from another program. If I do not impersonate, I get errors because I do not have the proper credentials.</p> <p>I did some research into the matter and found a number of websites that had a decent amount of VB.NET information. The problem I am having with the code I wrote is I can access the network resources, but I cannot instantiate the COM object.</p> <p>If I fill and submit the credential prompt (above) before attempting to instantiate it, it works fine. That leads me to believe there must be something that the WinXP credential prompt is doing that I am not. Below is the code I am using for Impersonation:</p> <pre><code>Public Sub BeginImpersonation() Const LOGON32_PROVIDER_DEFAULT As Integer = 0 Const LOGON32_LOGON_INTERACTIVE As Integer = 2 Const SecurityImpersonation As Integer = 2 Dim win32ErrorNumber As Integer _tokenHandle = IntPtr.Zero _dupeTokenHandle = IntPtr.Zero If Not LogonUser(_username, _domainname, _password, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, _tokenHandle) Then win32ErrorNumber = System.Runtime.InteropServices.Marshal.GetLastWin32Error() Throw New ImpersonationException(win32ErrorNumber, GetErrorMessage(win32ErrorNumber), _username, _domainname) End If If Not DuplicateToken(_tokenHandle, SecurityImpersonation, _dupeTokenHandle) Then win32ErrorNumber = System.Runtime.InteropServices.Marshal.GetLastWin32Error() CloseHandle(_tokenHandle) Throw New ImpersonationException(win32ErrorNumber, "Unable to duplicate token!", _username, _domainname) End If Dim newId As New System.Security.Principal.WindowsIdentity(_dupeTokenHandle) _impersonatedUser = newId.Impersonate() _impersonating = True End Sub </code></pre> <p>I have also tried sending different flags to the impersonator method, but nothing seems to be working. Here are the different flags I found:</p> <pre><code>Enum LOGON32_LOGON INTERACTIVE = 2 NETWORK = 3 BATCH = 4 SERVICE = 5 UNLOCK = 7 NETWORK_CLEARTEXT = 8 NEW_CREDENTIALS = 9 End Enum Enum LOGON32_PROVIDER [DEFAULT] = 0 WINNT35 = 1 WINNT40 = 2 WINNT50 = 3 End Enum Enum SECURITY_LEVEL Anonymous = 0 Identification = 1 Impersonation = 2 Delegation = 3 End Enum </code></pre> <p>Thanks in advance.</p> http://stackoverflow.com/questions/265774/programmatically-scroll-to-an-anchor-tag 5 Programmatically scroll to an Anchor Tag Anders 2008-11-05T16:40:29Z 2009-10-24T11:16:34Z <p>Consider the following code:</p> <pre><code>&lt;a href="#label2"&gt;GoTo Label2&lt;/a&gt; ... [content here] ... &lt;a name="label0"&gt;&lt;/a&gt;More content &lt;a name="label1"&gt;&lt;/a&gt;More content &lt;a name="label2"&gt;&lt;/a&gt;More content &lt;a name="label3"&gt;&lt;/a&gt;More content &lt;a name="label4"&gt;&lt;/a&gt;More content </code></pre> <p>Is there a way to emulate clicking on the "GoTo Label2" link to scroll to the appropriate region on the page through code?</p> <p><strong>EDIT</strong>: An acceptable alternative would be to scroll to an element with a unique-id, which already exists on my page. I would be adding the anchor tags if this is a viable solution.</p> http://stackoverflow.com/questions/530043/how-to-do-conditional-sql-server-statements 0 How to do conditional SQL Server statements? Anders 2009-02-09T21:25:58Z 2009-10-20T02:48:30Z <p>I have a database with event information, including date (in MMDDYYYY format). is it possible to write an SQL Server statement to only get rows that fall within a certain time frame?</p> <p>something like this pseudo-statement:</p> <pre><code>SELECT * FROM events WHERE [current_date minus date &lt;= 31] ORDER BY date ASC </code></pre> <p>where <code>date</code> is the date in the SQL Server row and <code>current_date</code> is today's date. The <code>31</code> is days, so basically a month's time.</p> <p>I can easily process the data after a generic statement (read: <code>SELECT * FROM events ORDER BY date ASC</code>), but it would be "cool" (as in me learning something new :P) to know if this is possible.</p> http://stackoverflow.com/questions/1472496/log-in-loop-asp-net-mvc-view-with-authorize-attribute 0 Log in loop ASP.NET MVC view with Authorize attribute Anders 2009-09-24T15:39:49Z 2009-10-19T15:54:40Z <p>Hello SO:</p> <p>I just uploaded an MVC application to my live server. Before doing so, I created a user ('anders') after creating the necessary tables and stored procedures for authentication via the <code>aspnet_regsql</code> command in the VS2008 Command Prompt. I successfully tested, locally, that I need to log in before (or while) accessing this view:</p> <pre><code>[Authorize(Roles = "admin")] public ViewResult Index() { return View(); } </code></pre> <p>I made a back up of my local database, and restored this to my live server. Before testing the view, I verified that I can log in with my newly-created user. However, when I try to access the view after logging in, I get redirected indefinitely to the log in page.</p> <h2>New Info</h2> <p>Looks like something else is going on, but the above information may still be useful. Apparently my user is <strong>not</strong> in the admin group, even though I looked into the database and verified that my <code>UserID</code> is in the <code>dbo.aspnet_Roles</code> table and the <code>RoleID</code> corresponds with the admin role. I found this out by changing the code at the top of the master page where it welcomes the logged in user, and noticed that it returned false:</p> <pre><code>Welcome &lt;b&gt;&lt;%= Html.Encode(Page.User.Identity.Name) %&gt;&lt;/b&gt;! (&lt;%= Html.Encode(Page.User.IsInRole("admin")) %&gt;) </code></pre> <p>Both my user and the newly created 'stackoverflow' (password is passw0rd, for you guys to check it out) user are supposed to be in the admin role, but for some reason they are not.</p> <p>Any help with tracking down the reason why my users aren't being recognized as being in the 'admin' role would be greatly appreciated. Thanks in advanced!</p> <p><a href="http://anders-leet.com" rel="nofollow">Link to my live server</a>.</p> http://stackoverflow.com/questions/1099170/anyone-have-experience-with-teleriks-radgrid-paging 2 Anyone have experience with Telerik's RadGrid Paging? Anders 2009-07-08T16:29:37Z 2009-10-10T04:05:19Z <p>I am having an issue with the paging system on Telerik's RadGrid (AJAX). First take a look at this screenshot:</p> <p><img src="http://i25.tinypic.com/2eyjsj7.jpg" alt="alt text" /></p> <p>As you can see, the First/Last Prev/Next buttons are there, but there is no markings on them. Also, the dropdown (thats where those values are coming from) and whatever that 'select' is are really messed up. Here is my designer code:</p> <pre><code>&lt;asp:LinqDataSource ID="ItemViewDataSource" runat="server" ContextTypeName="GSFyi.GSFyiDataClasses_DataContext" TableName="FYI_Items" OrderBy="FYI_State.name, name" EnableDelete="True"&gt; &lt;/asp:LinqDataSource&gt; &lt;h2 class="gridTitle"&gt; All Items&lt;/h2&gt; &lt;telerik:RadGrid ID="ItemViewRadGrid" runat="server" AutoGenerateColumns="False" DataSourceID="ItemViewDataSource" GridLines="None" AllowAutomaticDeletes="True" EnableEmbeddedSkins="False" OnItemDataBound="itemsGrid_ItemDataBound" AllowPaging="True" PageSize="15" AllowCustomPaging="True"&gt; &lt;HeaderContextMenu&gt; &lt;CollapseAnimation Type="OutQuint" Duration="200"&gt;&lt;/CollapseAnimation&gt; &lt;/HeaderContextMenu&gt; &lt;PagerStyle FirstPageImageUrl="../../../../../Custom/Modules/GSFyi/Resources/Images/Icons/resultset_first.png" LastPageImageUrl="../../../../../Custom/Modules/GSFyi/Resources/Images/Icons/resultset_last.png" Mode="NextPrev" NextPageImageUrl="../../../../../Custom/Modules/GSFyi/Resources/Images/Icons/resultset_next.png" PrevPageImageUrl="../../../../../Custom/Modules/GSFyi/Resources/Images/Icons/resultset_previous.png" /&gt; &lt;MasterTableView DataKeyNames="id" DataSourceID="ItemViewDataSource" CommandItemDisplay="None" CssClass="listItems" Width="98%" PageSize="15" PagerStyle-Mode="NextPrevAndNumeric"&gt; &lt;RowIndicatorColumn&gt; &lt;HeaderStyle Width="20px" /&gt; &lt;/RowIndicatorColumn&gt; &lt;ExpandCollapseColumn&gt; &lt;HeaderStyle Width="20px" /&gt; &lt;/ExpandCollapseColumn&gt; &lt;Columns&gt; &lt;telerik:GridTemplateColumn ItemStyle-CssClass="gridActions edit" UniqueName="Edit"&gt; &lt;ItemTemplate&gt; &lt;asp:HyperLink ID="edit" runat="server" Text="Edit"&gt;&lt;/asp:HyperLink&gt; &lt;/ItemTemplate&gt; &lt;ItemStyle CssClass="gridActions edit"&gt;&lt;/ItemStyle&gt; &lt;/telerik:GridTemplateColumn&gt; &lt;telerik:GridButtonColumn ConfirmText="Are you sure you want to delete this item?" ConfirmDialogType="RadWindow" ButtonType="LinkButton" ItemStyle-CssClass="gridActions delete" CommandName="Delete"&gt; &lt;ItemStyle CssClass="gridActions delete"&gt;&lt;/ItemStyle&gt; &lt;/telerik:GridButtonColumn&gt; &lt;telerik:GridBoundColumn DataField="name" HeaderText="Item Name" SortExpression="name" UniqueName="name"&gt; &lt;/telerik:GridBoundColumn&gt; &lt;telerik:GridTemplateColumn HeaderText="State" UniqueName="state" &gt; &lt;ItemTemplate&gt; &lt;asp:Literal ID="stateLit" runat="server" Text='&lt;%# Eval("FYI_State.name") %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/telerik:GridTemplateColumn&gt; &lt;telerik:GridTemplateColumn HeaderText="Type" UniqueName="type"&gt; &lt;ItemTemplate&gt; &lt;asp:Literal ID="typeLit" runat="server" Text='&lt;%# Eval("FYI_Type.name") %&gt;' /&gt; &lt;/ItemTemplate&gt; &lt;/telerik:GridTemplateColumn&gt; &lt;telerik:GridBoundColumn DataField="url" HeaderText="Value" SortExpression="url" UniqueName="url"&gt; &lt;/telerik:GridBoundColumn&gt; &lt;/Columns&gt; &lt;EditFormSettings&gt; &lt;EditColumn InsertImageUrl="Update.gif" UpdateImageUrl="Update.gif" EditImageUrl="Edit.gif" CancelImageUrl="Cancel.gif"&gt; &lt;/EditColumn&gt; &lt;/EditFormSettings&gt; &lt;/MasterTableView&gt; &lt;FilterMenu&gt; &lt;CollapseAnimation Type="OutQuint" Duration="200"&gt;&lt;/CollapseAnimation&gt; &lt;/FilterMenu&gt; &lt;/telerik:RadGrid&gt; </code></pre> <p>I assumed that AT LEAST the images would be present since I specified these images:</p> <p><img src="http://i28.tinypic.com/2d81kd2.jpg" alt="alt text" /></p> <p>But no luck. Any input will be greatly appreciated!</p> <p>Cheers, anders</p> http://stackoverflow.com/questions/483703/how-do-i-properly-set-up-a-silverlight-enabled-wcf-service 0 How do I properly set up a Silverlight-Enabled WCF Service? Anders 2009-01-27T14:54:18Z 2009-10-08T14:00:03Z <p><strong>EDIT</strong>: I started a closed vote on this question because I resolved the issue. I was doing everything fine, but a reference to an ASP URL rewriter that I downloaded and uninstalled a while ago still had a reference in IIS. This forum post by <a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/e56a7768-b8a5-421e-98d9-5bd9f013bfee/" rel="nofollow">Waclaw Stypula</a> (the one with the steps) helped me track this down, by accident. When I launched the run command, IIS told me that it (obviously) could not find the rewriter DLL. I removed the reference and the app ran fine after that.</p> <p><hr /></p> <p>I am following the <a href="http://silverlight.net/learn/tutorials.aspx" rel="nofollow">silverlight.net</a> tutorials by <a href="http://silverlight.net/blogs/jesseliberty/" rel="nofollow">Jesse Liberty</a>. Currently I am trying to do <a href="http://silverlight.net/learn/tutorials/sqldatagrid_vb.aspx" rel="nofollow">tutorial three</a>, but I am running into a wall under the heading "<strong>CREATE THE WEB SERVICE</strong>" (about halfway down).</p> <p>First, when I create the new service by adding it to the solution, the tutorial indicates that three files should be created; <code>IService1.vb</code>, <code>Service1.svc</code>, and <code>Service1.svc.vb</code>. I do not get the <code>IService1.vb</code> file when I add the service to the solution. I <a href="http://download.microsoft.com/download/f/a/9/fa9bafe9-3434-4af0-b428-d990bc9fbfaf/3-SQLDB_Source_VB.zip" rel="nofollow">downloaded</a> the copy of the project they provided, and the <code>Service1.svc.vb</code> file is in there, so I added one manually and copied the contents of the file. The tutorial says it is a VB tutorial, but <a href="http://silverlight.net/themes/silverlight/images/learn/tutorials/Beta2SQLData_7.png" rel="nofollow">displays C#</a> in the accompanying screenshot so maybe that is the issue.</p> <p>After I get all the files made up like the tutorials (copy/paste to make sure I don't have a typo), I try to add the service reference and get the following error:</p> <blockquote> <p><code>The service class of type KeyboardControl_Web.Service1 both defines a ServiceContract and inherits a ServiceContract from type KeyboardControl_Web.IService1. Contract inheritance can only be used among interface types. If a class is marked with ServiceContractAttribute, it must be the only type in the hierarchy with ServiceContractAttribute. Consider moving the ServiceContractAttribute on type KeyboardControl_Web.IService1 to a separate interface that type KeyboardControl_Web.IService1 implements.</code></p> </blockquote> <p>I tried googling different portions of the message, but did not find much useful information.</p> <p>Here is the code for the different files:</p> <pre><code>//IService1.vb Imports System.ServiceModel ' NOTE: If you change the class name "IService1" here, you must also update ' the reference to "IService1" in Web.config. &lt;ServiceContract()&gt; _ Public Interface IService1 &lt;OperationContract()&gt; _ Function GetAllLocations() As List(Of Address) End Interface //Service1.svc.vb Imports Microsoft.VisualBasic Imports System Imports System.Collections.Generic Imports System.Linq Imports System.Runtime.Serialization Imports System.ServiceModel Imports System.Text ' NOTE: If you change the class name "Service1" here, you must also ' update the reference to "Service1" in Web.config and in the ' associated .svc file. Public Class Service1 Implements IService1 Public Function GetAllLocations() As List(Of Address) Implements IService1.GetAllLocations Dim db As New DataClasses1DataContext() Dim matchingCustomers = From cust In db.userControlDemos Select cust 'Return matchingCustomers.ToList() End Function End Class </code></pre> <p>I am new to Silverlight/WCF in general, as well as to Interfaces and Services. Can you guys help me get on the right track?</p> <p>EDIT: I should add that I am using Visual Studio 2008, on Windows Vista Business SP1.</p> http://stackoverflow.com/questions/1179682/need-a-little-more-help-converting-a-crc-function-from-vb-net-to-c 1 Need a little more help converting a CRC function from VB.NET to C# Anders 2009-07-24T19:28:47Z 2009-10-08T11:31:40Z <p>I probably should have just put all this in one question, sorry for that :(</p> <h1>Second error</h1> <p>Ok, this should be the end of errors (hopefully):</p> <pre><code>private static string getCRC(string input, bool appendDate) { string toEnc = string.Format("{0}{1}", input, appendDate == true ? string.Format("{0:yyyyMMdd}", System.DateTime.Now) : ""); System.IO.MemoryStream mStream = new System.IO.MemoryStream(System.Text.ASCIIEncoding.ASCII.GetBytes(toEnc), false); CRC32 oCRC = new CRC32(); return oCRC.GetCrc32(((System.IO.Stream)mStream)).ToString(); } </code></pre> <p>Error is on the return line:</p> <blockquote> <p><strong>Compiler Error Message:</strong> CS1502: The best overloaded method match for 'CRC.CRC32.GetCrc32(ref System.IO.Stream)' has some invalid arguments</p> </blockquote> <p>Here is the function it is referring to:</p> <pre><code>public UInt32 GetCrc32(ref System.IO.Stream stream) { //Dim crc32Result As Integer = &amp;HFFFFFFFF UInt32 crc32Result = UInt32.MaxValue; try { byte[] buffer = new byte[BUFFER_SIZE]; int readSize = BUFFER_SIZE; int count = stream.Read(buffer, 0, readSize); int i; UInt32 iLookup; //Dim tot As Integer = 0 while ((count &gt; 0)) { for (i = 0; i &lt;= count - 1; i++) { iLookup = (crc32Result &amp; 0xff) ^ buffer[i]; //crc32Result = ((crc32Result And &amp;HFFFFFF00) \ &amp;H100) And &amp;HFFFFFF ' nasty shr 8 with vb :/ crc32Result = ((UInt32)((crc32Result &amp; 4294967040L) / 256) &amp; UInt32.MaxValue); // nasty shr 8 with vb :/ crc32Result = crc32Result ^ crc32Table[iLookup]; } count = stream.Read(buffer, 0, readSize); } } catch (Exception ex) { HttpContext.Current.Response.Output.Write(string.Format("{0}{1}{2}", ex.Message, Environment.NewLine, ex.StackTrace)); System.Diagnostics.Debugger.Break(); } return (~crc32Result); } </code></pre> <p>As you can see I tried to cast the memorystream as a stream, but I don't think it liked that too much.</p> <h1>First error</h1> <p>(<a href="http://stackoverflow.com/questions/1179682/need-a-little-more-help-converting-a-crc-function-from-vb-net-to-c/1179695#1179695">solved here</a>)</p> <p>If you have not seen my last couple of questions, I have a CRC function written in VB.NET. I used an online converter to convert it over to C#. Here is the original VB code:</p> <pre><code>Public Sub New() Dim dwPolynomial As UInt32 = 3988292384 Dim i As Integer, j As Integer ReDim crc32Table(256) Dim dwCrc As UInt32 For i = 0 To 255 dwCrc = i For j = 8 To 1 Step -1 If (dwCrc And 1) Then dwCrc = ((dwCrc And &amp;HFFFFFFFE) \ 2&amp;) And &amp;H7FFFFFFF dwCrc = dwCrc Xor dwPolynomial Else dwCrc = ((dwCrc And &amp;HFFFFFFFE) \ 2&amp;) And &amp;H7FFFFFFF End If Next j crc32Table(i) = dwCrc Next i End Sub </code></pre> <p>Here is my converted code. I fixed a few of the errors I was having but there are few more that I cannot figure out:</p> <pre><code>public CRC32() { UInt32 dwPolynomial = ((UInt32)3988292384L); int i; int j; UInt32[] crc32Table; crc32Table = new UInt32[256]; UInt32 dwCrc; for (i = 0; i &lt;= 255; i++) { dwCrc = ((UInt32)i); for (j = 8; j &gt;= 1; j -= 1) { if ((dwCrc &amp; 1)) { dwCrc = ((dwCrc &amp; 0xfffffffe) / 2L) &amp; 0x7fffffff; dwCrc = dwCrc ^ dwPolynomial; } else { dwCrc = ((dwCrc &amp; 0xfffffffe) / 2L) &amp; 0x7fffffff; } } crc32Table[i] = dwCrc; } } </code></pre> <p>The first error is on this line:</p> <blockquote> <p><strong>Compiler Error Message:</strong> CS0030: Cannot convert type 'uint' to 'bool'</p> <p><code>if ((dwCrc &amp; 1))</code></p> </blockquote> <p>Should I be comparing these two values with a different operator? I am not too sure about why the <code>&amp;</code> operator is the http://stackoverflow.com/questions/1504043/using-ado-net-entity-data-model-how-do-i-pass-or-set-the-connection-string-pas 1 Using ADO.NET Entity Data Model, how do I pass (or set) the connection string password? Anders 2009-10-01T13:40:09Z 2009-10-01T15:28:08Z <p>Hello SO:</p> <p>I am working with the ADO.NET Entity Data Model for this side project I am working on. Typically I would include the whole connection string (user and password) inside the web.config, but I was feeling frisky this morning so I decided to exclude the password from the connection string. Unfortunately for me, I cannot seem to figure out how to pass or set the password before I manipulate the database, and all the searching I've done so far have not yielded any fruitful results. All I have currently are a couple of lines that add a new record:</p> <pre><code>_entities.AddToUploadSet(uploadFile); _entities.SaveChanges(); </code></pre> <p>I see there is a <code>ConnectionString</code> property inside of <code>_entities.Connection</code>, but I failed to find anything useful like a password property.</p> <p>Can anyone help me out? Thanks!</p> <h1>edit</h1> <p>For clarification, this screenshot shows the step where I can choose whether or not to include the password in the web.config file:</p> <p><img src="http://imgur.com/OV9Gj.png" alt="alt text" /></p> <p>So as you can see, I need to set it in my application code as the prompt suggests.</p> http://stackoverflow.com/questions/1504043/using-ado-net-entity-data-model-how-do-i-pass-or-set-the-connection-string-pas/1504525#1504525 1 Answer by Anders for Using ADO.NET Entity Data Model, how do I pass (or set) the connection string password? Anders 2009-10-01T15:08:22Z 2009-10-01T15:08:22Z <p>Well, I did some digging around and duct-taped this solution together:</p> <pre><code>private static string CreateNewConnectionString(string connectionName, string password) { var config = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~").ConnectionStrings.ConnectionStrings[connectionName]; var split = config.ConnectionString.Split(Convert.ToChar(";")); var sb = new System.Text.StringBuilder(); for (var i = 0; i &lt;= (split.Length - 1); i++) { if (split[i].ToLower().Contains("user id")) { split[i] += ";Password=" + password; } if (i &lt; (split.Length - 1)) { sb.AppendFormat("{0};", split[i]); } else { sb.Append(split[i]); } } return sb.ToString(); } </code></pre> <p>Granted it is not the prettiest method, but it gets the job done. I pass it a connection string name and a password, and it returns an updated connection string with the password. This is how I implemented it:</p> <pre><code>_entities = new UploadEntity(CreateNewConnectionString("UploadEntity", "[removed]")); _entities.AddToUploadSet(uploadFile); _entities.SaveChanges(); </code></pre> http://stackoverflow.com/questions/1487294/what-is-the-difference-if-any-between-string-format-and-tagbuilder-in-asp-net-m 1 What is the difference, if any, between string.Format and TagBuilder in ASP.NET MVC? Anders 2009-09-28T14:18:24Z 2009-09-28T14:51:29Z <p>Hello SO:</p> <p>I have a Html Helper file for my ASP.NET MVC application. The majority of them simply return a formatted string.</p> <p>Here is an example of one of my formatted string helpers:</p> <pre><code>public static string Label(this HtmlHelper helper, string @for, string text) { return string.Format("&lt;label for \"{0}\"&gt;{1}&lt;/label&gt;", @for, text); } </code></pre> <p>Here is a TagBuilder version that gives me the same result as above:</p> <pre><code>public static string Label(this HtmlHelper helper, string @for, string text) { var builder = new TagBuilder("label"); builder.Attributes.Add("for", @for); builder.SetInnerText(text); return builder.ToString(TagRenderMode.Normal); } </code></pre> <p>Now, a few sites I have been reading/learning about MVC from mix up implementations. Some use the <code>TagBuilder</code> method, others use <code>string.Format()</code>, and some use both interchangeably.</p> <p>The label tag is rather simple, so would it be 'better' to just return a formatted string rather than instantiate the <code>TagBuilder</code> class for tags like this one?</p> <p>I am not necessarily worried about performance, I am just curious as to why some choose TagBuilder and others use formatted strings.</p> <p>Thanks for the enlightenment!</p> http://stackoverflow.com/questions/1466388/element-is-not-defined-jquery-element-remove 1 Element is not defined jQuery $(element).remove() Anders 2009-09-23T14:33:45Z 2009-09-23T19:44:20Z <p>Hello SO:</p> <p>I have this javascript that adds a form field, along with a link to remove that field:</p> <pre><code>var fieldCount = 0; function addField() { var name = 'file' + fieldCount; var row = 'row' + fieldCount; var str = '&lt;p id="' + row + '"&gt;&lt;label for="' + name + '"&gt;File to upload: &lt;input type="file" name="' + name + '" id="' + name + '" /&gt;(100MB max size) &lt;a onclick="removeRow(' + row + '); return false;"&gt;[-]&lt;/a&gt;&lt;/label&gt;&lt;/p&gt;'; fieldCount++; $("#fields").append(str); }; function removeRow(id) { $(id).remove(); }; </code></pre> <p>Here is the markup:</p> <pre><code>&lt;form id="ajaxUploadForm" action="&lt;%= Url.Action("AjaxUpload", "Upload")%&gt;" method="post" enctype="multipart/form-data"&gt; &lt;fieldset id="uploadFields"&gt; &lt;legend&gt;Upload a file&lt;/legend&gt; &lt;div id="fields"&gt;&lt;/div&gt; &lt;input id="ajaxUploadButton" type="submit" value="Submit" /&gt; &lt;/fieldset&gt; &lt;a onclick="addField(); return false;" id="add"&gt;Add&lt;/a&gt; &lt;div id="resultBox"&gt; &lt;p id="status" style="margin:10px;"&gt;&lt;/p&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>The addFields works as expected, but when I click the remove link firebug tells me that "row#" is not defined, where # is any number of the added fields.</p> <p>Any help would be appreciated!</p> http://stackoverflow.com/questions/1466975/ajax-upload-script-for-multiple-files-jquery-asp-net-mvc 1 Ajax upload script for multiple files, jQuery ASP.NET MVC Anders 2009-09-23T16:03:15Z 2009-09-23T19:37:13Z <p>Hello SO:</p> <p>I am working on an upload script for an ASP.NET MVC application. I have an implementation that works with one file, but I would like to expand this to handle multiple uploads. Here is the original implementation:</p> <p>Upload View (yes I will be moving this jQuery code to its own file):</p> <pre><code>&lt;script type="text/javascript"&gt; var fieldCount = 0; function addField() { var name = 'file' + fieldCount; var row = 'row' + fieldCount; var str = '&lt;p id="' + row + '"&gt;&lt;label for="' + name + '"&gt;File to upload: &lt;input type="file" name="' + name + '" id="' + name + '" /&gt;(100MB max size) &lt;a onclick="removeRow(\'#' + row + '\'); return false;"&gt;[-]&lt;/a&gt;&lt;/label&gt;&lt;/p&gt;'; fieldCount++; $("#fields").append(str); }; function removeRow(id) { if ($("#fields").children().size() &gt; 1) { $(id).remove(); } }; $(function() { $("#ajaxUploadForm").ajaxForm({ iframe: true, dataType: "json", beforeSubmit: function() { $("#resultBox").show(); $("#status").html('&lt;h1&gt;&lt;img src="/Content/busy.gif" /&gt; Uploading file...&lt;/h1&gt;'); }, success: function(result) { $("#ajaxUploadForm").unblock(); $("#ajaxUploadForm").resetForm(); var tcolor; var msg; if (!result.message) { tcolor = "red"; msg = result.error; } else { tcolor = "green"; msg = result.message; } $("#resultBox").show(); $("#status").html('&lt;span style="color:' + tcolor + ';"&gt;' + msg + '&lt;/span&gt;').animate({ opacity: 1.0 }, 3000).fadeOut('slow', function() { $("#resultBox").hide(); }); }, error: function(xhr, textStatus, errorThrown) { $("#ajaxUploadForm").unblock(); $("#ajaxUploadForm").resetForm(); $("#resultBox").add("p").attr("id", "status").css("margin-top", "15px").css("padding", "20px"); $("#status").html('&lt;span style="color:red;"&gt;Error uploading file&lt;/span&gt;').animate({ opacity: 1.0 }, 3000).fadeOut('slow', function() { $("#resultBox").hide(); }); } }); }); &lt;/script&gt; &lt;form id="ajaxUploadForm" action="&lt;%= Url.Action("AjaxUpload", "Upload")%&gt;" method="post" enctype="multipart/form-data"&gt; &lt;fieldset id="uploadFields"&gt; &lt;legend&gt;Upload a file&lt;/legend&gt; &lt;div id="fields"&gt;&lt;/div&gt; &lt;input id="ajaxUploadButton" type="submit" value="Submit" /&gt; &lt;/fieldset&gt; &lt;a onclick="addField(); return false;" id="add"&gt;Add&lt;/a&gt; &lt;div id="resultBox"&gt; &lt;p id="status" style="margin:10px;"&gt;&lt;/p&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>Action result:</p> <pre><code>public FileUploadJsonResult AjaxUpload(HttpPostedFileBase file) { Upload fileToUpload; try { fileToUpload = new Upload { filename = file.FileName, filesize = file.ContentLength, date = DateTime.Now, id = Guid.NewGuid() }; var savedFileName = Server.MapPath(Path.Combine(@"~/uploads", Path.GetFileName(fileToUpload.filename))); if (System.IO.File.Exists(savedFileName)) { throw new Exception(string.Format("The file '{0}' already exists on the server.", file.FileName)); } file.SaveAs(savedFileName); } catch (Exception ex) { return new FileUploadJsonResult { Data = new { error = string.Format("Upload failure: {0}", ex.Message), message = string.Empty } }; } return new FileUploadJsonResult { Data = new { message = string.Format("{0} uploaded successfully. (id:{1})", Path.GetFileName(file.FileName), fileToUpload.id) } }; } </code></pre> <p>I used concepts <a href="http://aspzone.com/tech/jquery-file-upload-in-asp-net-mvc-without-using-flash/" rel="nofollow">from this blog post</a> to get this whole thing rolling.</p> <p><hr /></p> <p>Now with my javascript to add/remove fields, I changed the action result slightly:</p> <pre><code>public List&lt;FileUploadJsonResult&gt; AjaxUpload(HttpPostedFileBase fileBase) { var results = new List&lt;FileUploadJsonResult&gt;(); try { if (Request.Files.Count &gt; 0) { Upload uploadFile; for (var i = 0; i &lt;= (Request.Files.Count - 1); i++) { HttpPostedFileBase file = Request.Files[i]; uploadFile = new Upload { filename = file.FileName, filesize = file.ContentLength, date = DateTime.Now, id = Guid.NewGuid() }; var savedFileName = Server.MapPath(Path.Combine(@"~/uploads", Path.GetFileName(uploadFile.filename))); if (System.IO.File.Exists(savedFileName)) { results.Add(new FileUploadJsonResult { Data = new { error = string.Format("Upload failure: {0}", string.Format("The file '{0}' already exists on the server.", file.FileName)), message = string.Empty } }); } file.SaveAs(savedFileName); results.Add(new FileUploadJsonResult { Data = new { message = string.Format("{0} uploaded successfully", file.FileName) } }); } } } catch (Exception ex) { results.Add(new FileUploadJsonResult { Data = new { error = string.Format("Upload failure: {0}", ex.Message), message = string.Empty } }); } return results; } </code></pre> <p>I am kind of stuck at this point. The upload works fine, but my javascript errors out because I am returning a list rather than a single item. I imagine if I tweak that part of the code to iterate through the result list, this can be accomplished.</p> <p>Another thing that I would like to be able to do is after each file finishes uploading, to add success text to the resultBox.</p> <p>Any assistance will be appreciated! Thanks!</p> http://stackoverflow.com/questions/1462409/is-my-form-not-submitting-by-design-or-is-there-something-else-going-on-here 0 Is my form not submitting by design or is there something else going on here? Anders 2009-09-22T20:30:58Z 2009-09-22T21:03:33Z <p>Hello SO:</p> <p>I am working in ASP.NET MVC and made a simple form that is AJAX enabled (using <code>MicrosoftAjax</code> and <code>MicrosoftMvcAjax</code>). All it does is pass the form value to a partial view, then updates the target element with the new value.</p> <p>Here is the view with the form:</p> <pre><code>&lt;asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server"&gt; &lt;h2&gt; &lt;%=Html.Encode(ViewData["Message"]) ?? "Home Page"%&gt;&lt;/h2&gt; &lt;div&gt; &lt;p&gt; &lt;% using (Ajax.BeginForm("AjaxView", new AjaxOptions { UpdateTargetId = "Test" })) { %&gt; &lt;%= Html.Label("FormMessage","Message") %&gt; &lt;%= Html.TextBox("FormMessage")%&gt; &lt;br /&gt; &lt;%= Html.Submit("Submit","Go") %&gt; &lt;% } %&gt; &lt;/p&gt; &lt;p id="Test"&gt; &lt;% Html.RenderPartial("AjaxView"); %&gt; &lt;/p&gt; &lt;/div&gt; &lt;/asp:Content&gt; </code></pre> <p>here is the code from the controller:</p> <pre><code>public ActionResult AjaxView() { if(Request.IsAjaxRequest()) { ViewData["AjaxMessage"] = string.IsNullOrEmpty(Request.Form["FormMessage"]) ? "No Form Data!" : Request.Form["FormMessage"]; return PartialView("AjaxView"); } return View(); } </code></pre> <p>and here is the partial view:</p> <pre><code>&lt;%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %&gt; &lt;%= ViewData["AjaxMessage"] ?? "Default Text" %&gt; </code></pre> <p>Everything is working fine it seems, but when I try to enter something with <code>&lt;</code> or <code>&gt;</code>, the script does not execute. I am not intending for people to be able to enter html to this field, but why does the script fail to execute?</p> <p>If it is a problem with the script getting confused by these characters, can I encode the incoming text (using <code>Server.HtmlEncode()</code> or something similar) before the ajax runs so that any 'unsafe' characters are converted and the script will continue on normally?</p> <p>Thanks!</p> <h2>edit</h2> <p>I just realized if I enter "&lt;&lt;", I will get "&lt;" back from the script. Maybe this info will help.</p> http://stackoverflow.com/questions/1460143/updatetargetid-asp-net-ajax-where-is-it 0 UpdateTargetId ASP.NET Ajax...Where is it? Anders 2009-09-22T13:35:21Z 2009-09-22T17:41:17Z <p>Hello SO:</p> <p>This is probably a silly question, but why am I unable to utilize Ajax in my project?</p> <p>I should have all the necessary references: </p> <blockquote> <p><code>System</code><br /> <code>System.Configuration</code><br /> <code>System.Core</code><br /> <code>System.Data</code><br /> <code>System.Data.DataSetExtensions</code><br /> <code>System.Data.Entity</code><br /> <code>System.Data.Linq</code><br /> <code>System.Drawing</code><br /> <code>System.EnterpriseServices</code><br /> <code>System.Runtime.Serialization</code><br /> <code>System.Security</code><br /> <code>System.Web</code><br /> <code>System.Web.Abstractions</code><br /> <code>System.Web.Extensions</code><br /> <code>System.Web.Mobile</code><br /> <code>System.Web.Mvc</code><br /> <code>System.Web.Routing</code><br /> <code>System.Web.Services</code><br /> <code>System.Xml</code><br /> <code>System.Xml.Linq</code></p> </blockquote> <p>I also added Ajax script references to my MasterPage, but this doesn't really matter at the moment since I cannot write code to utilize it.</p> <p>Do I have to write a wrapper class that exposes these properties to my view? Or am I missing something else?</p> <p>Thanks</p> <p>code:</p> <pre><code>&lt;div&gt; &lt;p&gt; &lt;%= Ajax.ActionLink("Test","AjaxTest",new AjaxOptions(UpdateTargetId = "test")) %&gt; &lt;/p&gt; &lt;p id="test" visible="false"&gt; Test Text &lt;/p&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1444708/am-i-doing-this-wrong-or-do-i-need-to-ask-my-hosting-service-to-change-permission 1 Am I doing this wrong or do I need to ask my hosting service to change permissions? Anders 2009-09-18T13:58:26Z 2009-09-18T14:39:10Z <p>Hello SO:</p> <p>I am attempting to upload files to my server using ASP.NET MVC. Here is the code that handles the upload request:</p> <pre><code>foreach (string file in Request.Files) { var hpf = Request.Files[file]; if (hpf.ContentLength == 0) { continue; } var savedFileName = Path.Combine(@"~/uploads", Path.GetFileName(hpf.FileName)); hpf.SaveAs(Server.MapPath(savedFileName)); } </code></pre> <p>I keep getting this error:</p> <blockquote> <p>Access to the path 'C:\HostingSpaces\andersle\anders-leet.com\wwwroot\uploads\{filename}' is denied.</p> </blockquote> <p>I set the permissions of the upload folder to 777, so from that end it should be OK. Would I have to talk to my hosting company about other permissions (since this is ASP.NET)?</p> <p>Or is my upload logic completely wrong?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1444708/am-i-doing-this-wrong-or-do-i-need-to-ask-my-hosting-service-to-change-permission/1444981#1444981 0 Answer by Anders for Am I doing this wrong or do I need to ask my hosting service to change permissions? Anders 2009-09-18T14:39:10Z 2009-09-18T14:39:10Z <p>Turns out I have to change the permissions from my control panel rather than my FTP client. It is now working.</p> http://stackoverflow.com/questions/1440761/is-it-possible-to-utilize-the-linq-portion-of-the-foreach-inside-the-loop 2 Is it possible to utilize the LINQ portion of the foreach inside the loop? Anders 2009-09-17T19:06:05Z 2009-09-17T19:12:29Z <p>Hello SO:</p> <p>I have this view in an ASP.NET MVC application:</p> <pre><code>&lt;% var path = Path.Combine(HttpRuntime.AppDomainAppPath, "uploads"); foreach (var file in Directory.GetFiles(path).OrderBy(f =&gt; new FileInfo(f).Length)) { var item = new FileInfo(file); %&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;td&gt; &lt;%=Html.Encode(Path.GetFileName(item.Name))%&gt; &lt;/td&gt; &lt;td&gt; &lt;%=Html.Encode(Functions.FormatBytes(item.Length))%&gt; &lt;/td&gt; &lt;td&gt; &lt;%=Html.FileLink(item.Name)%&gt; &lt;/td&gt; &lt;/tr&gt; &lt;% } %&gt; </code></pre> <p>Is it possible to access my variable <code>f</code> inside the loop, or is there some other way to do this so I do not have to dimension two instances of <code>FileInfo(file)</code>?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1435363/map-path-of-local-file-asp-net-mvc 0 Map path of local file ASP.NET/MVC Anders 2009-09-16T20:45:39Z 2009-09-16T21:07:02Z <p>Hello SO:</p> <p>I have a file upload program written in ASP.NET MVC. It is currently on my local development machine, and I would like to know how (if it is possible) to generate a link for each uploaded file so when it is clicked, the item is displayed/downloaded etc.</p> <p>Current code/markup that handles displaying file list:</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;th&gt;&lt;/th&gt; &lt;th&gt; Name &lt;/th&gt; &lt;th&gt; Length &lt;/th&gt; &lt;th&gt;&lt;/th&gt; &lt;/tr&gt; &lt;% var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "uploads"); foreach (var file in Directory.GetFiles(path)) { var item = new FileInfo(file); %&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;td&gt; &lt;%=Html.Encode(Path.GetFileName(item.Name))%&gt; &lt;/td&gt; &lt;td&gt; &lt;%=Html.Encode(item.Length &gt;= 1024 ? item.Length / 1024 + " kilobytes" : item.Length + " bytes")%&gt; &lt;/td&gt; &lt;td&gt; // This is the line in question. Does not work as-is. &lt;a href="&lt;%= item.FullName %&gt;"&gt;&lt;%= Html.Encode(Path.GetFileName(item.Name)) %&gt;&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;% } %&gt; &lt;/table&gt; </code></pre> <p>I imagine I will have to change the file-handling code around once this goes live, but for now this is sufficient. Suggestions are also welcome :)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1434763/page-not-found-error-in-asp-net-mvc-application-on-live-server 0 Page Not Found error in ASP.NET MVC application on live server Anders 2009-09-16T18:41:35Z 2009-09-16T18:50:18Z <p>Hello SO:</p> <p>I wrote a simple file upload application using ASP.NET MVC. I tested it successfully on my development machine, but when I attempt to use it on my live server any action I try results in a Page Not Found page.</p> <p>With my hosting provider (<a href="http://www.reliablesite.net/v3/index.asp" rel="nofollow">reliablesite.net</a>), I needed to specifically upload the <code>System.Web.Mvc</code> dll to my <code>bin</code> folder, so it is possible I am missing an assembly or something...but I should be getting a hard error like this one if that is the case:</p> <p><img src="http://imgur.com/yzhke.png" alt="alt text" /></p> <p><a href="http://anders-leet.com" rel="nofollow">link to live site</a>, try clicking the about or the upload etc to see what I am talking about.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1422149/what-is-vectorization/1422198#1422198 0 Answer by Anders for What is "vectorization" ? Anders 2009-09-14T15:13:43Z 2009-09-14T15:13:43Z <p>Vectorization is the term for converting a scalar program to a vector program. Vectorized programs can run multiple operations from a single instruction, whereas scalar can only operate on pairs of operands at once.</p> <p>From <a href="http://en.wikipedia.org/wiki/Vectorization%5F%28computer%5Fscience%29" rel="nofollow">wikipedia</a>:</p> <p>Scalar approach:</p> <pre><code>for (i = 0; i &lt; 1024; i++) { C[i] = A[i]*B[i]; } </code></pre> <p>Vectorized approach:</p> <pre><code>for (i = 0; i &lt; 1024; i+=4) { C[i:i+3] = A[i:i+3]*B[i:i+3]; } </code></pre> http://stackoverflow.com/questions/1407814/display-scroll-bar-in-textbox-when-contents-are-beyond-the-bounds-c 0 Display scroll bar in textbox when contents are beyond the bounds C# Anders 2009-09-10T21:25:40Z 2009-09-10T22:09:32Z <p>Is it possible to show/hide the scroll bar in a text box only when the line count in the text box is more than the number of lines displayed?</p> http://stackoverflow.com/questions/1400908/mamp-adding-odbc-or-sql-server-support/1400939#1400939 1 Answer by Anders for MAMP: Adding ODBC or SQL Server support Anders 2009-09-09T17:20:05Z 2009-09-09T17:20:05Z <p><a href="http://stackoverflow.com/questions/223165/how-do-i-add-an-odbc-driver-to-a-mamp-environment">Check this question out</a>, looks like you need to get a driver for your version of PHP. </p> <p>Here is another link: <a href="http://sc0ttdav3y.blogspot.com/2008/02/connecting-to-ms-sql-server-from-php.html" rel="nofollow">Connecting to MS SQL server from PHP using MAMP on OSX</a>.</p> http://stackoverflow.com/questions/1395667/sql-statement-to-insert-record-into-table-that-has-identity-column 0 SQL statement to insert record into table that has identity column? Anders 2009-09-08T18:49:47Z 2009-09-08T18:58:57Z <p>Hello SO:</p> <p>I am attempting to insert a row manually into my SQL Server data table. This table has 5 columns, one identity and four data columns. I looked at <a href="http://stackoverflow.com/questions/850327/how-to-insert-into-a-table-with-just-one-identity-column">this post</a>, but when I run the selected answer's query (after replacing 'GroupTable' with my table name of course), my SQL Server 2005 management studio crashes.</p> <p>I have tried variations of the following statements, but obviously no luck thus far:</p> <pre><code>INSERT INTO MyTable (id, col1, col2, col3, col4) VALUES (0, 'Column 1 Value', 'Column 2 Value', 'Column 3 Value', 'Column 4 Value') INSERT INTO MyTable (col1, col2, col3, col4) VALUES ('Column 1 Value', 'Column 2 Value', 'Column 3 Value', 'Column 4 Value') </code></pre> <p>Any pointers would be greatly appreciated.</p> http://stackoverflow.com/questions/1379371/c-is-there-a-faster-way-to-check-if-an-external-web-page-exists 0 C#: Is there a faster way to check if an external web page exists? Anders 2009-09-04T13:45:00Z 2009-09-04T13:59:29Z <p>Hello SO:</p> <p>I wrote this method to check if a page exists or not:</p> <pre><code>protected bool PageExists(string url) { try { Uri u = new Uri(url); WebRequest w = WebRequest.Create(u); w.Method = WebRequestMethods.Http.Head; using (StreamReader s = new StreamReader(w.GetResponse().GetResponseStream())) { return (s.ReadToEnd().Length &gt;= 0); } } catch { return false; } } </code></pre> <p>I am using it to check a set of pages (iterates from AAAA-AAAZ), and it takes between 3 and 7 seconds to run the entire loop. Is there a faster or more efficient way to do this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1375806/help-simplifying-this-regular-expression-pattern 0 Help simplifying this Regular Expression pattern Anders 2009-09-03T20:36:42Z 2009-09-04T12:48:20Z <p>Hello SO:</p> <p>I have this Regular Expression that matches the following strings:</p> <pre><code>&lt;!-- 09-02-2009 ---&gt; &lt;!-- 09-02-2009 12:00:00 ---&gt; &lt;!-- 09-02-2009 12:00:00 A ---&gt; &lt;!-- 09-02-2009 12:00:00 AM ---&gt; </code></pre> <p>Here is the pattern:</p> <pre><code>&lt;!-- (?&lt;month&gt;\d{2}?)-(?&lt;day&gt;\d{2}?)-(?&lt;year&gt;\d{4}?)(?:(?: ?\d{2}:?){3}?(?: ?[aApP][mM]?)?)? ---&gt; </code></pre> <p><strong>updated pattern, per twistol:</strong></p> <pre><code>&lt;!-- (?&lt;month&gt;\d{2}?)-(?&lt;day&gt;\d{2}?)-(?&lt;year&gt;\d{4}?)(?&lt;time&gt;(?: ?(?:\d{2}:){2}\d{2})?(?: ?[aApP][mM]?)?)? ---&gt; </code></pre> <p>Is there anything I can do to simplify this pattern?</p> <p>Thanks!</p> <h1><strong>EDIT</strong></h1> <p>Here is the pattern I came up with all comments/answers, plus validation built in. It is a bit ugly, but who said regex needs to be pretty? :P</p> <pre><code>&lt;!-- (?&lt;month&gt;(?:0[1-9]|1[0-2]))-(?&lt;day&gt;(?:0[1-9]|1[0-9]|2[0-9]|3[01]))-(?&lt;year&gt;\d{4})(?&lt;time&gt; (?:0[0-9]|1[0-9]|2[0-3]):(?:[0-5][0-9])(?::[0-5][0-9])?(?: [aApP][mM]?)?)? ---&gt; </code></pre> <p>It will match valid dates in the following formats:</p> <pre><code>&lt;!-- 09-02-2009 ---&gt; &lt;!-- 09-02-2009 12:00 ---&gt; &lt;!-- 09-02-2009 12:00 A ---&gt; &lt;!-- 09-02-2009 12:00 AM ---&gt; &lt;!-- 09-02-2009 12:00:00 ---&gt; &lt;!-- 09-02-2009 12:00:00 A ---&gt; &lt;!-- 09-02-2009 12:00:00 AM ---&gt; </code></pre> http://stackoverflow.com/questions/1331009/cross-thread-operation-not-valid-vb-net 1 Cross-Thread operation not valid vb.net Anders 2009-08-25T21:09:39Z 2009-09-03T15:27:13Z <p>Hi SO:</p> <p>I looked around the site and the questions I found relating to this subject were for C# (the application that I am maintaining is written in VB.NET), so I apologize if I overlooked one.</p> <p>Here is where I am calling my thread:</p> <pre><code>Private Sub saveBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles saveBtn.Click If Not LoadedFilePath = String.Empty Then Dim oTrd = New Threading.Thread(AddressOf SaveData) oTrd.Start() End If End Sub </code></pre> <p>And here are the methods:</p> <pre><code>Private Sub SaveData() SaveData(LoadedFilePath) End Sub Private Sub SaveData(ByVal filepath As String) If InvokeRequired Then Me.Invoke(New MethodInvoker(AddressOf SaveData)) End If Try Me.Cursor = Cursors.WaitCursor Dim oSettings As New SettingsClass(filepath) Dim oEnc As New AES With oSettings //' Code removed for brevity End With oEnc = Nothing oSettings.SaveSettings() savedLbl.Visible = True If SavedTimeout IsNot Nothing Then Try SavedTimeout.StopEvent() Catch End Try End If SavedTimeout = New TimedEvent(Now.AddSeconds(5)) SavedTimeout.StartEvent() Me.Cursor = Cursors.Default Catch ex As Exception MsgBox(ex.Message) End Try End Sub </code></pre> <p>The save function works just fine, but I get the cross-thread error when the program tries to switch the cursor back to default. Can anyone help me out with this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1370198/is-it-possible-to-use-a-bitmap-generated-by-code-in-an-asp-image-tag 0 Is it possible to use a Bitmap generated by code in an asp image tag? Anders 2009-09-02T21:20:48Z 2009-09-02T21:57:52Z <p>I have written some code to create dynamic banners. It returns a bitmap variable. Is there some way that I can use this variable as the ImageUrl for an <code>&lt;asp:Image /&gt;</code> ?</p> <p>Here is the code that creates the image:</p> <pre><code>public class SideImage { protected const int ImgCt = 4; protected const int ImgW = 130; protected const int ImgH = 150; public Bitmap GenerateImage() { string serializedImage = CreateImage("side"); if(!string.IsNullOrEmpty(serializedImage)) { using(MemoryStream ms = new MemoryStream(Convert.FromBase64String(serializedImage))) { Bitmap bitmap = new Bitmap(ms); return bitmap; } } return null; } protected string CreateImage(string path) { try { using (Bitmap canvas = new Bitmap(ImgW, (ImgCt * ImgH))) { using (Graphics canvasGraphic = Graphics.FromImage(canvas)) { List&lt;FileInfo&gt; fileList = new List&lt;FileInfo&gt;(); DirectoryInfo directoryInfo = new DirectoryInfo(HttpContext.Current.Server.MapPath(path + "/")); fileList.AddRange(directoryInfo.GetFiles("*.jpg")); Randomizer&lt;FileInfo&gt; randomizer = new Randomizer&lt;FileInfo&gt;(); fileList.Sort(randomizer); int yOffset = 0; for (int i = 0; i &lt;= fileList.Count - 1; i++) { using (Image image = Image.FromFile(fileList[i].FullName)) { Rectangle rectangle = new Rectangle(0, yOffset, ImgW, ImgH); canvasGraphic.DrawImage(image, rectangle); } yOffset += ImgH; } ImageCodecInfo[] imageCodecInfo = ImageCodecInfo.GetImageEncoders(); using (EncoderParameters encoderParameters = new EncoderParameters(2)) { using (MemoryStream memoryStream = new MemoryStream()) { encoderParameters.Param[0] = new EncoderParameter(Encoder.Quality, 100L); encoderParameters.Param[1] = new EncoderParameter(Encoder.ColorDepth, 16L); canvas.Save(memoryStream, imageCodecInfo[1], encoderParameters); return Convert.ToBase64String(memoryStream.GetBuffer()); } } } } } catch (Exception ex) { return null; } } } public class Randomizer&lt;T&gt; : IComparer&lt;T&gt; { protected Random Salter; protected int Salt; protected SHA1 Sha1; public Randomizer() { Salter = new Random(); Salt = Salter.Next(); Sha1 = new SHA1Managed(); } public Randomizer(int seed) { Salter = new Random(seed); Salt = Salter.Next(); Sha1 = new SHA1Managed(); } private int HashAndSalt(int value) { byte[] b = Sha1.ComputeHash(BitConverter.GetBytes(value)); int r = 0; for (int i = 0; i &lt; (b.Length - 1); i += 4) { r = r ^ BitConverter.ToInt32(b, i); } return r ^ Salt; } public int Compare(T x, T y) { return HashAndSalt(x.GetHashCode().CompareTo(HashAndSalt(y.GetHashCode()))); } } </code></pre> http://stackoverflow.com/questions/1362904/question-about-linq2sql-performance-in-c 2 Question about LINQ2Sql performance in C# Anders 2009-09-01T14:50:50Z 2009-09-01T14:55:23Z <p>Hey SO:</p> <p>From a performance perspective, is it better to wrap each statement that utilizes LINQ in a using() statement, or to declare a class-level instance and use in each method?</p> <p>For instance:</p> <pre><code>public void UpdateSomeRecord(Record recordToUpdate) { using(var entities = new RecordDBEntities()) { // logic here... } } private RecordDBEntities entites = new RecordDBEntities(); public void UpdateSomeRecord(Record recordToUpdate) { // logic here... } </code></pre> <p>Or does it not matter either way?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1349146/i-want-to-better-myself-as-a-programmer-can-you-guys-give-me-some-good-resources 5 I want to better myself as a Programmer, can you guys give me some good resources to start off? [closed] Anders 2009-08-28T20:24:01Z 2009-08-28T22:19:17Z <blockquote> <p><strong>Possible Duplicates:</strong><br /> <a href="http://stackoverflow.com/questions/517739/how-and-where-can-i-learn-programming">How and where can I learn programming?</a><br /> <a href="http://stackoverflow.com/questions/330412/which-books-made-you-a-better-programmer">Which books made you a better programmer ?</a><br /> <a href="http://stackoverflow.com/questions/82639/how-to-become-a-better-programmer">How to become a better programmer?</a> </p> </blockquote> <p>Hey SO:</p> <p>I had an, albeit slightly inebriated, epiphany last night and decided that I need to really start learning more about programming.</p> <p>I am primarily self-taught (started programming in grade school on my TI-83), and as such I have a relatively broad but general knowledge of programming languages. I have experience with html, css, asp.net, c#, vb.net, ti-basic (from the calculator), php, mssql, mysql, javascript, and probably a few other that I am forgetting at the moment.</p> <p>I want to learn more C#, since I just started working with it a few months ago and I am enjoying it much more than VB.NET (for .NET languages).</p> <p>Can you guys provide me with some starter resources and/or tips and tricks that you have used in the past to get acquainted with a particular language?</p> http://stackoverflow.com/questions/1504043/using-ado-net-entity-data-model-how-do-i-pass-or-set-the-connection-string-pas/1504634#1504634 Comment by Anders on Using ADO.NET Entity Data Model, how do I pass (or set) the connection string password? Anders 2009-10-01T15:46:35Z 2009-10-01T15:46:35Z Yes, that is what I meant hehe. Good to know there is something built in that can do what I did. I will check it out, thanks for the link! http://stackoverflow.com/questions/1504043/using-ado-net-entity-data-model-how-do-i-pass-or-set-the-connection-string-pas/1504634#1504634 Comment by Anders on Using ADO.NET Entity Data Model, how do I pass (or set) the connection string password? Anders 2009-10-01T15:33:36Z 2009-10-01T15:33:36Z Is that basically what I did below? http://stackoverflow.com/questions/1504043/using-ado-net-entity-data-model-how-do-i-pass-or-set-the-connection-string-pas/1504079#1504079 Comment by Anders on Using ADO.NET Entity Data Model, how do I pass (or set) the connection string password? Anders 2009-10-01T13:51:55Z 2009-10-01T13:51:55Z Thanks for the reply. How would you suggest going about altering the loaded connection string? I imagine I would start with <code>&#95;entities.Connection.ConnectionString</code>? http://stackoverflow.com/questions/1487294/what-is-the-difference-if-any-between-string-format-and-tagbuilder-in-asp-net-m/1487484#1487484 Comment by Anders on What is the difference, if any, between string.Format and TagBuilder in ASP.NET MVC? Anders 2009-09-28T15:35:57Z 2009-09-28T15:35:57Z very good point. i think i may 'hybrid' my helpers file, make the simple ones a formatted string and the more complex ones TagBuilders. http://stackoverflow.com/questions/1487294/what-is-the-difference-if-any-between-string-format-and-tagbuilder-in-asp-net-m/1487425#1487425 Comment by Anders on What is the difference, if any, between string.Format and TagBuilder in ASP.NET MVC? Anders 2009-09-28T15:34:53Z 2009-09-28T15:34:53Z alright thank you! http://stackoverflow.com/questions/1466975/ajax-upload-script-for-multiple-files-jquery-asp-net-mvc/1468144#1468144 Comment by Anders on Ajax upload script for multiple files, jQuery ASP.NET MVC Anders 2009-09-24T18:04:37Z 2009-09-24T18:04:37Z I am not entirely sure how to go about doing what you have suggested. As far I can tell, the javascript only handles submitting the form and dumping the form data into a hidden iframe so that the form can be submitted asynchronously. I am kind of rusty with js and I am just starting to get back into the swing of things. Any suggestions or something I can try? Thanks! http://stackoverflow.com/questions/1472496/log-in-loop-asp-net-mvc-view-with-authorize-attribute/1472543#1472543 Comment by Anders on Log in loop ASP.NET MVC view with Authorize attribute Anders 2009-09-24T17:41:55Z 2009-09-24T17:41:55Z Figured it out, the default RoleProvider was mapped to a local database. Tweaked some settings in the web.config got things working properly. Thanks for the hint, it probably saved me a good deal of time! http://stackoverflow.com/questions/1472496/log-in-loop-asp-net-mvc-view-with-authorize-attribute/1472543#1472543 Comment by Anders on Log in loop ASP.NET MVC view with Authorize attribute Anders 2009-09-24T17:20:22Z 2009-09-24T17:20:22Z Alright. What more information can I post to help you out? Also, how can I verify that the RoleProvider is working? I have not implemented a custom one. http://stackoverflow.com/questions/1466975/ajax-upload-script-for-multiple-files-jquery-asp-net-mvc/1468144#1468144 Comment by Anders on Ajax upload script for multiple files, jQuery ASP.NET MVC Anders 2009-09-23T20:36:32Z 2009-09-23T20:36:32Z For the script that I have in place to work properly, I must have the HttpPostedFileBase as an argument. In the original implementation, you will see that the argument is used in the code. In the multi-file implementation, I use Request.Files instead so I can process each file. http://stackoverflow.com/questions/1466388/element-is-not-defined-jquery-element-remove/1466426#1466426 Comment by Anders on Element is not defined jQuery $(element).remove() Anders 2009-09-23T14:56:58Z 2009-09-23T14:56:58Z Unfortunately with this, if I click the browse... button, it will remove the row. Is there a way to just accept the click from the anchor tag? http://stackoverflow.com/questions/1466388/element-is-not-defined-jquery-element-remove/1466415#1466415 Comment by Anders on Element is not defined jQuery $(element).remove() Anders 2009-09-23T14:42:15Z 2009-09-23T14:42:15Z Ah, I definitely forgot the #. Thanks! http://stackoverflow.com/questions/1460143/updatetargetid-asp-net-ajax-where-is-it/1460154#1460154 Comment by Anders on UpdateTargetId ASP.NET Ajax...Where is it? Anders 2009-09-22T14:29:10Z 2009-09-22T14:29:10Z I see what I did, () instead of {}. Ahh... http://stackoverflow.com/questions/1460143/updatetargetid-asp-net-ajax-where-is-it/1460154#1460154 Comment by Anders on UpdateTargetId ASP.NET Ajax...Where is it? Anders 2009-09-22T13:54:16Z 2009-09-22T13:54:16Z The application compiles with or without the import, and both ways I get this error when attempting to it: &quot;UpdateTargetId does not exist in the current context&quot; http://stackoverflow.com/questions/1444708/am-i-doing-this-wrong-or-do-i-need-to-ask-my-hosting-service-to-change-permission/1444981#1444981 Comment by Anders on Am I doing this wrong or do I need to ask my hosting service to change permissions? Anders 2009-09-18T14:41:08Z 2009-09-18T14:41:08Z and thank you for your suggestions@ http://stackoverflow.com/questions/1444708/am-i-doing-this-wrong-or-do-i-need-to-ask-my-hosting-service-to-change-permission/1444878#1444878 Comment by Anders on Am I doing this wrong or do I need to ask my hosting service to change permissions? Anders 2009-09-18T14:33:47Z 2009-09-18T14:33:47Z Hmm, I am unsure of the user to use. I created a new FTP user, but I get &quot;Could not create Windows user token from the credentials specified in the config file. Error from the operating system 'Logon failure: unknown user name or bad password.&quot;