User Aydsman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T11:03:43Zhttp://stackoverflow.com/feeds/user/148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/17533/request-vista-uac-elevation-if-path-is-protected/90442#904429Answer by Aydsman for Request vista UAC elevation if path is protected?Aydsman2008-09-18T06:10:20Z2009-10-29T03:55:00Z<p>The best way to detect if they are unable to perform an action is to attempt it and catch the <code>UnauthorizedAccessException</code>.</p>
<p>However as @<a href="http://stackoverflow.com/users/941/dannysmurf">DannySmurf</a> <a href="http://stackoverflow.com/questions/17533/request-vista-uac-elevation-if-path-is-protected#17544">correctly points out</a> you can only elevate a COM object or separate process.</p>
<p>There is a demonstration application within the Windows SDK Cross Technology Samples called <a href="http://msdn.microsoft.com/en-us/library/aa970890.aspx" rel="nofollow" title="MSDN - UAC Sample">UAC Demo</a>. This demonstration application shows a method of executing actions with an elevated process. It also demonstrates how to find out if a user is currently an administrator.</p>
http://stackoverflow.com/questions/58024/open-a-url-from-windows-forms5Open a URL from Windows FormsAydsman2008-09-12T00:40:55Z2009-10-01T00:45:29Z
<p>I'm trying to provide a link to my company's website from a Windows Form. I want to be well behaved and launch using the user's preferred browser.</p>
<p>What is the best way to open a URL in the user's default browser from a Windows Forms application?</p>
http://stackoverflow.com/questions/58425/wpf-application-fails-on-startup-with-typeinitializationexception1WPF Application fails on startup with TypeInitializationExceptionAydsman2008-09-12T07:06:37Z2009-06-18T10:48:51Z
<p>I have a simple WPF application which I am trying to start. I am following the Microsoft Patterns and Practices "Composite Application Guidance for WPF". I've followed their instructions however my WPF application fails immediately with a "TypeInitializationException".</p>
<p>The InnerException property reveals that "The type initializer for 'System.Windows.Navigation.BaseUriHelper' threw an exception."</p>
<p>Here is my app.xaml:</p>
<pre><code><Application x:Class="MyNamespace.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
</Application.Resources>
</Application>
</code></pre>
<p>And here is my app.xaml.cs (exception thrown at "public App()"):</p>
<pre><code>public partial class App : Application
{
public App()
{
Bootstrapper bootStrapper = new Bootstrapper();
bootStrapper.Run();
}
}
</code></pre>
<p>I have set the "App" class as the startup object in the project.</p>
<p>What is going astray?</p>
http://stackoverflow.com/questions/968249/c-create-custom-warning-in-visual-studio-if-certain-method-is-used-in-source-co/968263#9682639Answer by Aydsman for C#: Create custom warning in Visual Studio if certain method is used in source codeAydsman2009-06-09T05:15:22Z2009-06-09T05:15:22Z<p>You should consider using the <a href="http://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx" rel="nofollow"><code>Obsolete</code> attribute</a>. It allows you to mark a method which should not be used. It takes two optional parameters a message and a flag indicating if the complier should fail or raise a warning.</p>
http://stackoverflow.com/questions/143681/what-is-the-best-method-to-gather-data-about-the-use-of-your-application4What is the best method to gather data about the use of your application?Aydsman2008-09-27T14:00:30Z2008-12-30T04:59:05Z
<p>My company releases a small software product for which I've recently been taking over the development side. It is a C# Windows Forms application.</p>
<p>One of the things I've noticed is that much of the information about how the software is used is filtered through my superiors and I get the feeling that I'm missing important detail in some of the messages.</p>
<p>I realise I'll have to work on the management issues with this situation, however in order to give another view on the problem I've been considering a technological solution. Perhaps something similar to the "Microsoft Customer Experience Improvement Program".</p>
<p>I was wondering if anyone out there had any experience or advice monitoring and reporting on user behaviour in their applications?</p>
http://stackoverflow.com/questions/264400/datalist-conditional-statements-in-itemtemplate/264445#2644450Answer by Aydsman for DataList, Conditional statements in <ItemTemplate>?Aydsman2008-11-05T06:05:10Z2008-12-25T02:01:58Z<p>One option as a work-around would be to utilise a panel.</p>
<pre><code><asp:DataList runat="server">
<ItemTemplate>
<asp:Panel Visible="<%# Eval("Deleted") %>">
...(deleted content here)...
</asp:Panel>
<asp:Panel Visible="<%# Not Eval("Deleted") %>">
...(other content here)...
</asp:Panel>
</ItemTemplate>
</asp:DataList>
</code></pre>
http://stackoverflow.com/questions/307774/how-to-list-the-contents-of-a-zip-folder-in-c/307811#3078117Answer by Aydsman for How to list the contents of a .zip folder in c#?Aydsman2008-11-21T04:03:09Z2008-11-21T04:03:09Z<p>If you are using .Net Framework 3.0 or later, check out the <a href="http://msdn.microsoft.com/en-us/library/system.io.packaging.aspx" rel="nofollow" title="MSDN - System.IO.Packaging Namespace">System.IO.Packaging Namespace</a>. This will remove your dependancy on an external library.</p>
<p>Specifically check out the <a href="http://msdn.microsoft.com/en-us/library/system.io.packaging.zippackage.aspx" rel="nofollow" title="MSDN - ZipPackage Class">ZipPackage Class</a>.</p>
http://stackoverflow.com/questions/281170/unpacking-msi-in-net/286041#2860411Answer by Aydsman for Unpacking MSI in .NetAydsman2008-11-13T01:45:10Z2008-11-13T01:45:10Z<p>If you are using the standard Visual Studio setup projects do this:</p>
<ol>
<li>Add your scripts as files to your setup project</li>
<li>Right-click on the files</li>
<li>Select "Properties"</li>
<li>Change the "PackageAs" property to "vsdpaLoose"</li>
</ol>
<p>Your files will now be output alongside your MSI so will be available at any time.</p>
http://stackoverflow.com/questions/284939/post-data-getting-lost-somewhere/286003#2860033Answer by Aydsman for POST data getting 'lost' somewhereAydsman2008-11-13T01:15:16Z2008-11-13T01:15:16Z<p>Your issue is the "Target" property on the Form. Why is this here?</p>
<p>(I also took the liberty of cleaning your HTML up a little)</p>
<pre><code><html>
<head>
<title>Test JS Post</title>
<script type="text/javascript" language="javascript">
<!--
function OnLoad(){
try
{
alert("Posting...");
document.form1.submit();
}
catch(e)
{
alert("ERROR!");
alert(e);
}
}
//-->
</script>
</head>
<body onload="OnLoad()">
<form action="http://localhost:49684/Default.aspx" method="post" name="form1">
<input type="hidden" name="ClientID" value="123456" />
<input type="hidden" name="Password" value="2830088828" />
<input type="hidden" name="PracType" value="051" />
<input type="hidden" name="Encrypt" value="12345620081111" />
<h1>This is in the form. Submit me here:</h1><input type="submit" value="foo" />
</form>
</body>
</html>
</code></pre>
<p>In the code behind of <code>Default.aspx</code>:</p>
<pre><code>Private Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
For Each value As String In Request.Form.Keys
Debug.WriteLine(String.Format("{0} = ""{1}""", value, Request.Form.Item(value)))
Next
End Sub
</code></pre>
http://stackoverflow.com/questions/282571/asp-net-mvc-one-route-two-different-views/282585#2825859Answer by Aydsman for ASP.NET MVC one route, two different viewsAydsman2008-11-12T00:02:45Z2008-11-12T00:02:45Z<p>This should be a simple case of returning the appropriate view from your controller.</p>
<pre><code>public ActionResult Index()
If (User.IsLoggedOn)
{
// Do user-specific controller stuff here...
return View("LoggedOnIndex");
}
else
{
// Do anon controller stuff here...
return View("AnonymousIndex");
}
</code></pre>
http://stackoverflow.com/questions/271637/how-to-add-controls-to-itemtemplate-repeater-at-run-time/271846#2718461Answer by Aydsman for How to add controls to ItemTemplate (Repeater) at run time?Aydsman2008-11-07T11:47:25Z2008-11-10T00:03:27Z<p>In the past I've simply handled the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeater.onitemdatabound.aspx" rel="nofollow" title="MSDN - Repeater.ItemDataBound Event"><code>ItemDataBound Event</code></a> and modified the current <code>RepeaterItem</code> with whatever I needed to do.</p>
<p>Example:</p>
<pre><code>private void Repeater1_ItemDataBound(object Sender, RepeaterItemEventArgs e)
{
// Make sure you filter for the item you are after
if ((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem))
{
PlaceHolder listLocation = (PlaceHolder)e.Item.FindControl("listPlaceHolder");
var subItems = ((MyClass)e.Item.DataItem).SubItems;
listLocation.Controls.Add(new LiteralControl("<ul>");
foreach(var item in subItems)
{
listLocation.Controls.Add(new LiteralControl("<li>" + item + "</li>"));
}
listLocation.Controls.Add(new LiteralControl("</ul>");
}
}
</code></pre>
http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264451#2644512Answer by Aydsman for How to use Single Quotes in Eval Format StringAydsman2008-11-05T06:10:49Z2008-11-05T08:07:32Z<p>Don't forget that a .aspx page is simply XML. You just escape the quotes as you normally would.</p>
<p>For example:</p>
<pre><code><asp:Repeater ID="repeatTheLabel" runat="server">
<ItemTemplate>
<asp:Label ID="Label1" Text="<%# Eval(&quot;Id&quot;, &quot;This is item '{0}'.&quot;) %>" runat="server" />
</ItemTemplate>
<SeparatorTemplate>
<br />
</SeparatorTemplate>
</asp:Repeater>
</code></pre>
<p>When the above expression is databound the value between <code><%#</code> and <code>%></code> becomes:</p>
<blockquote>
<p><code>Eval("Id", "This is item '{0}'.")</code></p>
</blockquote>
<p>...which produces on the HTML page as output when databound with an array of objects with "Id" property values from 1 to 5:</p>
<blockquote>
<p>This is item '1'.<br />
This is item '2'.<br />
This is item '3'.<br />
This is item '4'.<br />
This is item '5'.</p>
</blockquote>
http://stackoverflow.com/questions/261547/aspradiobuttonlist-still-posts-back-to-server-even-when-client-validation-fails/261632#2616321Answer by Aydsman for Asp:RadioButtonList still posts back to server even when client validation fails?Aydsman2008-11-04T11:55:40Z2008-11-04T11:55:40Z<p>The <code>OnClick</code> code you are using to "validate" is being run and then the code which posts the form back which the control itself injects is being run.</p>
<p>You need to intercept that PostBack process and stop it before it posts the form client-side. The best way to do this would be with a <code>CustomValidator</code> and specifically the "ClientValidationFunction" property. This will allow your JavaScript to signal that the post back should not occur due to a validation error.</p>
http://stackoverflow.com/questions/249371/detect-changes-in-a-filesystem-since-last-scan/249403#2494034Answer by Aydsman for Detect changes in a filesystem since last scanAydsman2008-10-30T06:11:00Z2008-10-30T06:11:00Z<p>If you were coding in a .Net managed language, try out the <a href="http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx" rel="nofollow" title="FileSystemWatcher Class (System.IO)">FileSystemWatcher</a> class.</p>
<p>From MSDN:</p>
<blockquote>
<p>Use FileSystemWatcher to watch for
changes in a specified directory. You
can watch for changes in files and
subdirectories of the specified
directory. You can create a component
to watch files on a local computer, a
network drive, or a remote computer.</p>
<p>To watch for changes in all files, set
the Filter property to an empty string
("") or use wildcards ("<em>.</em>"). To
watch a specific file, set the Filter
property to the file name. For
example, to watch for changes in the
file MyDoc.txt, set the Filter
property to "MyDoc.txt". You can also
watch for changes in a certain type of
file. For example, to watch for
changes in text files, set the Filter
property to "*.txt".</p>
</blockquote>
http://stackoverflow.com/questions/234558/how-can-i-disable-viewstate-for-dynamically-created-controls/243052#2430522Answer by Aydsman for How can I disable ViewState for dynamically created controls?Aydsman2008-10-28T12:13:42Z2008-10-28T12:13:42Z<p>What you are seeing there is the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.pagestatepersister.controlstate.aspx" rel="nofollow" title=".NET Framework Class Library - PageStatePersister.ControlState Property "><code>ControlState</code></a> which was introduced with .Net Framework 2.0. It is designed to store the absolute minimum information for a control to work, such as the selection in your <code>DropDownList</code> and the text in your <code>TextBox</code>. Properties which are only related to appearance, such as <code>BackColor</code>, are still persisted within the <code>ViewState</code>.</p>
<p>Unlike <code>ViewState</code> <a href="http://msdn.microsoft.com/en-us/library/ms178577.aspx" rel="nofollow" title="What's New in ASP.NET State Management">you can't turn ControlState off</a>.</p>
<p>I can only assume this is to avoid confusion from end-users when controls do not do what they are supposed to if they disable <code>ViewState</code> without understanding the consequences.</p>
http://stackoverflow.com/questions/228814/install-asp-net-sql-express-in-a-script/232487#2324871Answer by Aydsman for install ASP.NET + SQL Express in a scriptAydsman2008-10-24T04:31:09Z2008-10-24T04:31:09Z<p>While WIX is certainly very flexible if you aren't comfortable with the learning curve (and there is a bit of a learning curve IMO) then perhaps you should check out the <a href="http://weblogs.asp.net/scottgu/archive/2008/01/28/vs-2008-web-deployment-project-support-released.aspx" rel="nofollow" title="Scott Gu's Blog - VS 2008 Web Deployment Project Support Released">Web Deployment Projects</a>.</p>
<p>From the blog post:</p>
<blockquote>
<p>Web Deployment projects can be used with either the "ASP.NET Web Site" or "ASP.NET Web Application Project" options built-into VS 2008, and provide a few additional build, packaging and deployment options for you to use.</p>
</blockquote>
<p>Regarding the database, I'd suggest that you utilise the <code>App_Data</code> directory and just deploy the ".mdf" file. This would be easier than trying to create a new database and restoring a backup.</p>
http://stackoverflow.com/questions/203022/how-can-i-intercept-the-html-from-a-viewresult-modify-it-and-serve-it-up/203850#2038501Answer by Aydsman for How can I intercept the HTML from a ViewResult, modify it and serve it up?Aydsman2008-10-15T06:17:58Z2008-10-15T06:17:58Z<p>Sounds like you want to write an <code>ActionFilterAttribute</code>. This attribute has the following methods:</p>
<ul>
<li><strong>OnActionExecuting</strong> - called just before the decorated action is executed</li>
<li><strong>OnActionExecuted</strong> - called after the action method is called, but before the <code>ActionResult</code> is rendered.</li>
<li><strong>OnResultExecuting</strong> - callled before the result is rendered</li>
<li><strong>OnResultExecuted</strong> - called after the result is rendered</li>
</ul>
<p>There is an example here which returns either JSON or XML data depending on the "Content-type" header: <a href="http://msmvps.com/blogs/omar/archive/2008/10/03/create-rest-api-using-asp-net-mvc-that-speaks-both-json-and-plain-xml.aspx" rel="nofollow" title="Create REST API using ASP.NET MVC that speaks both Json and plain Xml">Create REST API using ASP.NET MVC that speaks both Json and plain Xml</a></p>
http://stackoverflow.com/questions/141169/c-dynamically-created-linkbutton-command-event-handler/201301#2013013Answer by Aydsman for C# Dynamically created LinkButton Command Event Handler Aydsman2008-10-14T14:10:05Z2008-10-14T14:10:05Z<p>This is my favorite trick :)</p>
<p>Our scenario is to first render a control. Then using some input from the user, render further controls and have them respond to events.</p>
<p>The key here is state - you need to know the state of the control when it arrives at PostBack - so we use ViewState. The issue becomes then a chicken-and-egg problem; ViewState isn't available until after the <code>LoadViewState()</code> call, but you must create the controls before that call to have the events fired correctly.</p>
<p>The trick is to override <code>LoadViewState()</code> and <code>SaveViewState()</code> so we can control things.</p>
<p><em>(note that the code below is rough, from memory and probably has issues)</em></p>
<pre><code>private string searchQuery = null;
private void SearchButton(object sender, EventArgs e)
{
searchQuery = searchBox.Text;
var results = DataLayer.PerformSearch(searchQuery);
CreateLinkButtonControls(results);
}
// We save both the base state object, plus our query string. Everything here must be serializable.
protected override object SaveViewState()
{
object baseState = base.SaveViewState();
return new object[] { baseState, searchQuery };
}
// The parameter to this method is the exact object we returned from SaveViewState().
protected override void LoadViewState(object savedState)
{
object[] stateArray = (object[])savedState;
searchQuery = stateArray[1] as string;
// Re-run the query
var results = DataLayer.PerformSearch(searchQuery);
// Re-create the exact same control tree as at the point of SaveViewState above. It must be the same otherwise things will break.
CreateLinkButtonControls(results);
// Very important - load the rest of the ViewState, including our controls above.
base.LoadViewState(stateArray[0]);
}
</code></pre>
http://stackoverflow.com/questions/92792/user-control-created-dynamically-not-able-to-handle-events-on-postback/201166#2011665Answer by Aydsman for User Control created dynamically not able to handle events on PostBackAydsman2008-10-14T13:35:31Z2008-10-14T13:35:31Z<p>There are a couple of things which you are doing that are both not needed and probably causing your problems.</p>
<p>These are:</p>
<ol>
<li>There is no need to store the control object in the session. The Control itself should use ViewState and Session State to store information as required, not the whole instance.</li>
<li>You shouldn't be checking for PostBack when creating the control. It must be created each time to allow both ViewState to work and the event to be wired.</li>
<li>Controls loaded after the ViewState is loaded often have trouble operating correctly so avoid loading during the Page Load event wherever possible.</li>
</ol>
<p>This code works for me:</p>
<p><hr /></p>
<p>Default.aspx</p>
<pre><code><%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="Test_User_Control._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server"><title></title></head>
<body>
<form id="form1" runat="server">
<asp:PlaceHolder ID="PlaceHolder1" runat="server" />
</form>
</body>
</html>
</code></pre>
<p><hr /></p>
<p>Default.aspx.vb</p>
<pre><code>Partial Public Class _Default
Inherits System.Web.UI.Page
Private Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
Dim control As Control = LoadControl("~/UserControl1.ascx")
PlaceHolder1.Controls.Add(control)
End Sub
End Class
</code></pre>
<p><hr /></p>
<p>UserControl1.ascx</p>
<pre><code><%@ Control Language="vb" AutoEventWireup="false" CodeBehind="UserControl1.ascx.vb" Inherits="Test_User_Control.UserControl1" %>
<asp:Label ID="Label1" Text="Before Button Press" runat="server" />
<asp:Button ID="Button1" Text="Push me" runat="server" />
</code></pre>
<p><hr /></p>
<p>UserControl1.ascx.vb</p>
<pre><code>Public Partial Class UserControl1
Inherits System.Web.UI.UserControl
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Label1.Text = "The button has been pressed!"
End Sub
End Class
</code></pre>
<p><hr /></p>
http://stackoverflow.com/questions/36693/how-can-i-render-a-png-image-as-a-memory-stream-onto-a-net-reportviewer-repor/155600#1556005Answer by Aydsman for How can I render a PNG image (as a memory stream) onto a .NET ReportViewer report surfaceAydsman2008-09-30T23:37:10Z2008-09-30T23:37:10Z<p>I am doing something similar in order to have a changing logo on reports however I utilise report parameters to pass the value. I don't see any reason why this general method wouldn't work if the images were part of the data.</p>
<p>Essentially the images are passed over two fields. The first field is the MIME Type value and the second field is a Base64 encoded string containing the image content.</p>
<p><b>Step 1: Convert your image to Base64 encoding. (Our code always passes <code>ImageFormat.Png</code> to this method to make the MIME Type easy)</b></p>
<pre><code>private static string ConvertImageToBase64(Image image, ImageFormat format)
{
byte[] imageArray;
using (System.IO.MemoryStream imageStream = new System.IO.MemoryStream())
{
image.Save(imageStream, format);
imageArray = new byte[imageStream.Length];
imageStream.Seek(0, System.IO.SeekOrigin.Begin);
imageStream.Read(imageArray, 0, imageStream.Length);
}
return Convert.ToBase64String(imageArray);
}
</code></pre>
<p><b>Step 2: Pass the image and MIME Type to the report.</b></p>
<pre><code>reportParams[0] = new ReportParameter("ReportLogo", base64Logo);
reportParams[1] = new ReportParameter("ReportLogoMimeType", "image/png");
_reportViewer.LocalReport.SetParameters(reportParams);
</code></pre>
<p><b>Step 3: In the report set the following properties on the image (without the quotes):</b></p>
<ul>
<li>MIMEType: "=Parameters!ReportLogoMimeType.Value"</li>
<li>Value: "=System.Convert.FromBase64String(Parameters!ReportLogo.Value)"</li>
</ul>
<p><b>Trap for young players:</b>
Often the images will look horrible and like they've been scaled even though you're passing in an image which seems to be the "right size". This is because the reports are rendered for print (300 dpi) and not the screen (usually 72 or 92 dpi). The fix is to send in an image about 3 times too big, set it's correct size in the report and change the "<code>Sizing</code>" property on the image to "<code>FitProportional</code>".</p>
http://stackoverflow.com/questions/147359/how-to-save-an-encrypted-string-to-the-database/147487#1474872Answer by Aydsman for How to save an encrypted string to the database?Aydsman2008-09-29T04:15:54Z2008-09-29T04:15:54Z<p>Simply store in a binary column. (Mostly done from memory, corrections welcome!)</p>
<pre><code>CREATE TABLE [Test]
(
[Id] NOT NULL IDENTITY(1,1) PRIMARY KEY,
[Username] NOT NULL VARCHAR(500),
[Password] NOT NULL VARBINARY(500)
)
</code></pre>
<p>Then insert such:</p>
<pre><code>Dim conn As SqlConnection
Try
conn = New SqlConnection("<connectionstring>")
Dim command As New SqlCommand("INSERT INTO [Test] ([Username], [Password]) VALUES (@Username, @Password)", conn)
Dim usernameParameter = New SqlParameter("@Username", SqlDbType.VarChar)
usernameParameter.Value = username
command.Parameters.Add(usernameParameter)
Dim passwordParameter = New SqlParameter("@Password", SqlDbType.VarBinary)
passwordParameter.Value = password
command.Parameters.Add(passwordParameter)
command.ExecuteNonQuery()
Finally
If (Not (conn Is Nothing)) Then
conn.Close()
End If
End Try
</code></pre>
http://stackoverflow.com/questions/147033/when-creating-a-web-control-should-you-override-onload-or-implement-pageload/147042#1470424Answer by Aydsman for When creating a web control should you override OnLoad or implement Page_Load Aydsman2008-09-29T00:06:20Z2008-09-29T02:03:23Z<p>The <code>OnLoad</code> method should be the place where the <code>Load</code> event is raised. I personally always try to handle the event unless I need to do extra processing around raising the event.</p>
<p>I recommend handling the event itself under normal circumstances.</p>
http://stackoverflow.com/questions/130492/in-net-whats-the-best-safest-way-to-add-a-end-of-line-character-to-a-text/130503#1305031Answer by Aydsman for In .net, what's the best / safest way to add a "end of line" character to a text file?Aydsman2008-09-24T23:06:23Z2008-09-24T23:06:23Z<p>You are looking for <code>Environment.NewLine</code>. This will only be for your current operating system however.</p>
http://stackoverflow.com/questions/95912/how-can-i-detect-if-my-process-is-running-uac-elevated-or-not/114696#1146964Answer by Aydsman for How can I detect if my process is running UAC-elevated or not? Aydsman2008-09-22T12:54:25Z2008-09-24T07:12:48Z<p>For those of us working in C#, in the Windows SDK there is a "UACDemo" application as a part of the "Cross Technology Samples". They find if the current user is an administrator using this method:</p>
<pre><code>private bool IsAdministrator
{
get
{
WindowsIdentity wi = WindowsIdentity.GetCurrent();
WindowsPrincipal wp = new WindowsPrincipal(wi);
return wp.IsInRole(WindowsBuiltInRole.Administrator);
}
}
</code></pre>
<p>(Note: I refactored the original code to be a property, rather than an "if" statement)</p>
http://stackoverflow.com/questions/121676/starting-a-process-in-c-with-username-password-throws-access-is-denied-excep/121846#1218460Answer by Aydsman for Starting a process in C# with username & password throws "Access is Denied" exceptionAydsman2008-09-23T15:44:52Z2008-09-23T15:44:52Z<p>Check the <a href="http://msdn.microsoft.com/en-us/library/87x8e4d1.aspx" rel="nofollow" title="MSDN - ASP.NET Code Access Security">Code Access Security</a> level as <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx" rel="nofollow" title="MSDN - System.Diagnostics.Process">Process</a> requires <code>Full Trust</code>. Your web application may be running in a partial trust setting.</p>
<p>From the Process MSDN page:</p>
<blockquote>
<p><b>Permissions</b><br /><br />
* <b>LinkDemand</b><br />
for full trust for the immediate caller. This class cannot be used by partially trusted code.<br /><br />
* <b>InheritanceDemand</b><br />
for full trust for inheritors. This class cannot be inherited by partially trusted code. </p>
</blockquote>
http://stackoverflow.com/questions/78696/vista-uac-access-elevation-and-net/114714#1147142Answer by Aydsman for Vista UAC, Access Elevation and .NetAydsman2008-09-22T12:58:19Z2008-09-22T12:58:19Z<p>The Windows SDK "Cross Technology Samples" have a "UACDemo" application which shows examples of a C# Windows Forms application which launches an administrator process to perform a task which requires elevation (i.e. writing to <code>%programfiles%</code>).</p>
<p>This is a great starting point for writing your own functionality. I've extended this sample to use .Net Remoting and IPC to call between my normal user process and my elevated process which allows me to keep the elevation executable generic and implement application-specific code within the application.</p>
http://stackoverflow.com/questions/113479/when-to-enable-disable-viewstate/113549#1135493Answer by Aydsman for When to enable/disable ViewstateAydsman2008-09-22T07:06:23Z2008-09-22T07:06:23Z<p>You may find the information contained in the <a href="http://msdn.microsoft.com/en-us/library/z1hkazw7.aspx" rel="nofollow">"ASP.NET State Management Recommendations" article</a> on MSDN useful for making your decision.</p>
<p>Generally in ASP.NET 2.0 and above disabling the ViewState is less destructive due to the introduction of the Control State for storing informaton required for raising events etc.</p>
http://stackoverflow.com/questions/113392/dynamically-added-controls-in-asp-net/113515#1135153Answer by Aydsman for Dynamically added controls in Asp.NetAydsman2008-09-22T06:55:57Z2008-09-22T06:55:57Z<p>I agree with the other points made here "If you can get out of creating controls dynamically, then do so..." (by @<a href="http://stackoverflow.com/users/11559/jesper-blad-jensen-aka-deldy">Jesper Blad Jenson aka</a>) but here is a trick I worked out with dynamically created controls in the past.</p>
<p>The problem becomes chicken and the egg. You need your ViewState to create the control tree and you need your control tree created to get at your ViewState. Well, that's almost correct. There is a way to get at your ViewState values <i>just before</i> the rest of the tree is populated. That is by overriding <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.loadviewstate.aspx" rel="nofollow" title="MSDN - Control.LoadViewState Method"><code>LoadViewState(...)</code></a> and <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.saveviewstate.aspx" rel="nofollow" title="MSDN - Control.SaveViewState Method"><code>SaveViewState(...)</code></a>.</p>
<p>In SaveViewState store the control you wish to create:</p>
<pre><code>protected override object SaveViewState()
{
object[] myState = new object[2];
object[0] = base.SaveViewState();
object[1] = controlPickerDropDown.SelectedValue;
return myState
}
</code></pre>
<p>When the framework calls your "LoadViewState" override you'll get back the exact object you returned from "SaveViewState":</p>
<pre><code>protected override void LoadViewState(object savedState)
{
object[] myState = (object[])savedState;
// Here is the trick, use the value you saved here to create your control tree.
CreateControlBasedOnDropDownValue(myState[1]);
// Call the base method to ensure everything works correctly.
base.LoadViewState(myState[0]);
}
</code></pre>
<p>I've used this successfully to create ASP.Net pages where a DataSet was serialised to the ViewState to store changes to an entire grid of data allowing the user to make multiple edits with PostBacks and finally commit all their changes in a single "Save" operation.</p>
http://stackoverflow.com/questions/113288/multiple-services-from-the-same-executable/113332#1133320Answer by Aydsman for Multiple services from the same executableAydsman2008-09-22T05:41:05Z2008-09-22T05:41:05Z<p>You are probably looking to Impersonate the users. Check out some references I found with a quick Google search here:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.security.principal.windowsidentity.impersonate.aspx" rel="nofollow">MSDN Article on WindowsIdentity.Impersonate</a></li>
<li><a href="http://blogs.msdn.com/shawnfa/archive/2005/03/21/400088.aspx" rel="nofollow">.Net Security Blog Article</a></li>
</ul>
http://stackoverflow.com/questions/113233/how-to-release-net-apps-without-bundling-net-framework/113242#1132423Answer by Aydsman for How to release .Net apps without bundling .Net framework?Aydsman2008-09-22T04:58:57Z2008-09-22T04:58:57Z<p>One option without using Ngen may be to release using the .Net Framework 3.5 SP1 "Client Profile". This is a sub-set of the .Net Framework used for building client applications which can be downloaded as a separate, much smaller, package.</p>
<p>See details from the <a href="http://blogs.msdn.com/bclteam/archive/2008/05/21/net-framework-client-profile-justin-van-patten.aspx" rel="nofollow" title="BCL Team Blog - .NET Framework Client Profile [Justin Van Patten]">BCL Team Blog here</a> and <a href="http://weblogs.asp.net/scottgu/archive/2008/05/12/visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx" rel="nofollow" title="Scottgu's Blog - Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta">Scott Guthrie here</a>.</p>
http://stackoverflow.com/questions/17533/request-vista-uac-elevation-if-path-is-protected/90442#90442Comment by Aydsman on Request vista UAC elevation if path is protected?Aydsman2009-10-29T03:55:33Z2009-10-29T03:55:33ZThanks Matias. Fixed the post now.http://stackoverflow.com/questions/58024/open-a-url-from-windows-forms/1500956#1500956Comment by Aydsman on Open a URL from Windows FormsAydsman2009-09-30T23:32:51Z2009-09-30T23:32:51ZTrue, and that you should always consider. Their method of just swallowing exceptions makes me cringe though. You may be able to make arguments for it in this specific case but I'd still never have an empty "catch" block. It is too easy to entirely mask an issue that way.http://stackoverflow.com/questions/234558/how-can-i-disable-viewstate-for-dynamically-created-controls/243052#243052Comment by Aydsman on How can I disable ViewState for dynamically created controls?Aydsman2009-09-09T05:36:05Z2009-09-09T05:36:05ZYou need to take special steps to enable a control you are implementing to use ControlState.
If the control which you are using has already been coded to use ControlState you don't have to do anything to enable it's use, it will just happen.http://stackoverflow.com/questions/948303/is-there-a-better-way-to-count-string-format-placeholders-in-a-string-in-c/948876#948876Comment by Aydsman on Is there a better way to count string format placeholders in a string in C#?Aydsman2009-06-04T06:55:12Z2009-06-04T06:55:12ZTo correctly handle literal curly braces, change the regex to ignore them: @"(?<!\{)\{([0-9]+).*?\}(?!})"
This way the (valid) "{4} aa {{0}} bb {0}, {0}" string also correctly matches ignoring the second zero.http://stackoverflow.com/questions/144833/most-useful-attributes-in-c/144851#144851Comment by Aydsman on Most Useful Attributes in C#Aydsman2008-12-01T02:36:22Z2008-12-01T02:36:22ZYou can pass "true" as one of the parameters to System.Obsolete which causes the warning to become an error therefore breaking the build. Obviously this should be done once you have cleaned up all the warnings. :)http://stackoverflow.com/questions/17533/request-vista-uac-elevation-if-path-is-protected/90442#90442Comment by Aydsman on Request vista UAC elevation if path is protected?Aydsman2008-11-21T03:55:29Z2008-11-21T03:55:29Z@Ryan You're welcome. I'm a little frustrated how hard UAC seems to be in a managed environment. Feel free to browse my user profile and upvote my other questions! :)http://stackoverflow.com/questions/285997/developing-wpf-app-any-way-to-optimize-net-install/286026#286026Comment by Aydsman on Developing WPF app - any way to optimize .NET install?Aydsman2008-11-13T01:41:28Z2008-11-13T01:41:28ZAdditionally if you are using a setup project you can choose the option under the "Prerequsites" button to "Download prerequisites from the same locaton as my application" which automatically runs the install from your media at startup.http://stackoverflow.com/questions/191184/will-a-database-generated-from-sql-server-express-work-with-the-main-version-of-s/208196#208196Comment by Aydsman on Will a database generated from SQL Server Express work with the main version of SQL ?Aydsman2008-11-10T04:10:23Z2008-11-10T04:10:23ZThe other option is to detach from Express and attach on SQL Server (which is IMHO the simplest solution). Watch out for user accounts when doing this though.http://stackoverflow.com/questions/271637/how-to-add-controls-to-itemtemplate-repeater-at-run-time/271846#271846Comment by Aydsman on How to add controls to ItemTemplate (Repeater) at run time?Aydsman2008-11-10T00:04:26Z2008-11-10T00:04:26ZI'm not sure where your confusion is here Adam. Perhaps you can edit your question and add a bit of code or a further explaination.http://stackoverflow.com/questions/271318/should-you-access-a-variable-within-the-same-class-via-a-property/271327#271327Comment by Aydsman on Should you access a variable within the same class via a Property?Aydsman2008-11-07T05:56:17Z2008-11-07T05:56:17ZBy definition auto properties have no setter logic so they are functionally equivilent to a member variable. The difference being that later on you can change the implementation and introduce setter logic if required.http://stackoverflow.com/questions/269652/gui-event-recorder-and-playbackComment by Aydsman on GUI event recorder and playbackAydsman2008-11-07T02:29:17Z2008-11-07T02:29:17ZIf you do this the overwhelming consensus on my previous question ( <a href="http://stackoverflow.com/questions/143681/what-is-the-best-method-to-gather-data-about-the-use-of-your-application" rel="nofollow" title="what is the best method to gather data about the use of your application">stackoverflow.com/questions/143681/…</a> ) is make sure the users give permission to send ANY data back to you.http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264451#264451Comment by Aydsman on How to use Single Quotes in Eval Format StringAydsman2008-11-06T05:09:06Z2008-11-06T05:09:06ZGlad to hear it, David. I'd recomend you consider following the advice from @Rune and removing your need to do this altogether for a better architecture.http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264451#264451Comment by Aydsman on How to use Single Quotes in Eval Format StringAydsman2008-11-05T08:09:28Z2008-11-05T08:09:28ZDavid, did you remember to change the quotes around the attribute value (i.e. change SelectCommand='<%# to be SelectCommand="<%# ) when you escaped the quotes?http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264451#264451Comment by Aydsman on How to use Single Quotes in Eval Format StringAydsman2008-11-05T06:37:21Z2008-11-05T06:37:21ZThat's strange David. The label code I posted there was tested and worked fine.http://stackoverflow.com/questions/252391/how-can-setup-a-friendly-email-name-in-the-mailsetting-section-of-web-config/252415#252415Comment by Aydsman on How can setup a friendly email name in the MailSetting section of web.config?Aydsman2008-10-31T03:07:00Z2008-10-31T03:07:00ZThe bracket method is valid and noted as a "legacy" method in the RFC <a href="http://tools.ietf.org/html/rfc2822#page-16" rel="nofollow">tools.ietf.org/html/rfc2822#page-16</a> however the "display name" method shown here is recommended.