User Mun - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T18:24:41Zhttp://stackoverflow.com/feeds/user/775http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1296181/using-not-keyword-with-full-text-search-and-multiple-columns0Using NOT keyword with full-text search and multiple columnsMun2009-08-18T20:06:06Z2009-12-04T23:19:13Z
<p>Is it possible to use the CONTAINSTABLE and NOT keywords with SQL Server full-text searching and exclude rows where a single column contains the value to be excluded?</p>
<p>For example, let's take the following indexed view (simplified for the purposes of illustrating this problem):</p>
<pre><code>ItemId INT
FirstName VARCHAR(200)
MiddleName VARCHAR(200)
LastName VARCHAR(200)
Address VARCHAR(1000)
ChildrenNames TEXT
SearchData TEXT
</code></pre>
<p>SearchData is a concatenated field generated from the other text/varchar fields.</p>
<p>This view can then be searched using the following query to find rows that contain <em>firstname</em> but not <em>lastname</em>:</p>
<pre><code>SELECT *
FROM [v_MyView] V
LEFT OUTER JOIN CONTAINSTABLE
(
[v_MyView],
(
[FirstName],
[MiddleName],
[LastName],
[Address],
[ChildrenName],
[SearchData]
), '"name" AND NOT "lastname"') FTS ON [FTS].[Key] = [V].[ItemId]
WHERE (ISNULL(RANK,0) > 0)
</code></pre>
<p>This query doesn't seem to return the correct results, as it will only exclude rows if <strong>ALL</strong> of the fields being searched meet the criteria, whereas it should exclude <strong>ANY</strong> rows that meet the criteria.</p>
<p>ie. Rows that contain <em>name</em> AND <em>lastname</em> in <strong>any</strong> (single) column should be excluded from the result set, rather than only rows that contain <em>name</em> and <em>lastname</em> in <strong>every</strong> column (which is going to be unlikely).</p>
<p>The only option available seems to be to check if the user query contains any exclude values (eg. name -lastname), and if so, restrict the query to searching the 'SearchData' column only as this is a concatenated column and will contain all data. However, this will affect the relevancy ranking and doesn't seem like a good solution.</p>
http://stackoverflow.com/questions/1767746/c-building-an-array-with-button-entries/1767778#17677781Answer by Mun for C# Building An Array with Button Entries.Mun2009-11-20T01:31:03Z2009-11-20T01:31:03Z<p>You can put them all in a list and then sort by ID:</p>
<pre><code>List<Button> buttonList = new List<Button>();
buttonList.Add(Monday0700Button);
buttonList.Add(Monday0730Button);
buttonList.Add(Monday0800Button);
buttonList.Add(Monday0830Button);
buttonList.Sort((l,r) => l.ID.CompareTo(r.ID));
</code></pre>
http://stackoverflow.com/questions/1722871/asp-net-caching-for-web-application-with-multiple-domain-names0ASP.NET caching for web application with multiple domain namesMun2009-11-12T15:09:25Z2009-11-12T15:12:29Z
<p>Is it possible to have a central cache for an ASP.NET web application that is accessed using multiple domain names? The web application is using a single website and application pool, with multiple domains (host headers) pointing to it.</p>
<p>A bit of background - the application has a lot of data that doesn't change much, and to alleviate database load, I've been storing this in static variables. This has been working without any problems when there is only a single domain. However, with multiple domains, it seems that each domain name being used to access the website has its own copy of this data, so when it's invalidated in one site, the others still retain their own version causing it to never be updated.</p>
<p>I've tried changing this to use HttpRuntime.Cache instead of static variables, but this also exhibits the same problem where each domain being used to access the site seems to be storing its own version of the data.</p>
<p>Is there any way to cache data within an ASP.NET web application that can be shared (and invalidated) across all domains being used to access it?</p>
http://stackoverflow.com/questions/565922/get-last-run-date-of-task-in-windows-scheduled-tasks-from-asp-net1Get last run date of task in Windows Scheduled Tasks from ASP.NETMun2009-02-19T15:46:57Z2009-11-11T12:32:23Z
<p>Is it possible to get the last run date of a scheduled task in Windows Scheduled Tasks from ASP.NET?</p>
<p>Ideally, it would be good to be able to list, start and stop these tasks as well, though at this stage, the main thing I'd like to do is retrieve the last run time for a specific scheduled task.</p>
<p>If this is not possible, my workaround is to simply have the application being run update the database or XML file with it's last run date, but as this information is already stored in Scheduled Tasks, I was wondering if it might just be easier to read the data straight from there.</p>
http://stackoverflow.com/questions/1710114/jquery-tree-plugin/1710154#17101541Answer by Mun for Jquery Tree pluginMun2009-11-10T18:31:30Z2009-11-10T18:31:30Z<p>You could also try <a href="http://jstree.com/" rel="nofollow">jsTree</a>.</p>
http://stackoverflow.com/questions/506034/converting-user-entered-search-query-to-where-clause-for-use-in-sql-server-full-t4Converting user-entered search query to where clause for use in SQL Server full-text searchMun2009-02-03T04:40:45Z2009-10-30T15:38:54Z
<p>What's the best way to convert search terms entered by a user, into a query that can be used in a where clause for full-text searching to query a table and get back relevant results? For example, the following query entered by the user:</p>
<pre><code>+"e-mail" +attachment -"word document" -"e-learning"
</code></pre>
<p>Should translate into something like:</p>
<pre><code>SELECT * FROM MyTable WHERE (CONTAINS(*, '"e-mail"')) AND (CONTAINS(*, '"attachment"')) AND (NOT CONTAINS(*, '"word document"')) AND (NOT CONTAINS(*, '"e-learning"'))
</code></pre>
<p>I'm using a <a href="http://www.mediafire.com/?wj1wxdzuutt" rel="nofollow">query parser class</a> at the moment, which parses the query entered by users into tokens using a regular expression, and then constructs the where clause from the tokens.</p>
<p>However, given that this is probably a common requirement by a lot of systems using full-text search, I'm curious as to how other developers have approached this problem, and whether there's a better way of doing things.</p>
http://stackoverflow.com/questions/1635209/playing-quicktime-video-on-iphone-using-httphandler-and-iis-5-10Playing Quicktime video on iPhone using HttpHandler and IIS 5.1Mun2009-10-28T04:31:51Z2009-10-29T01:10:10Z
<p>I'm trying to stream QuickTime video to an iPhone from an ASP.NET web application using an HttpHandler. When hosting the web application from IIS 5.1 (Windows XP), the video player opens and then displays the error 'The server is not correctly configured'. However, when using IIS 7.5 (Windows 7), the video plays fine.</p>
<p>The production environment is running IIS 6.0 and has the same problem, where attempting to play videos on the iPhone via Mobile Safari displays the error above.</p>
<p>I've checked the Http Headers and they appear to be practically the same between the two servers (apart from a few, such as the <em>Server</em> header, which will obviously be different), except they appear in different order, though I doubt that this is causing the problem.</p>
<p>According to <a href="http://groups.google.com/group/iphonewebdev/browse%5Fthread/thread/794c4b5cb6d59768/c4073c261ab43d18?#c4073c261ab43d18" rel="nofollow">this thread</a> on Google Groups, adding the 'Accept-Ranges: bytes' header can help, though this made no difference for us. I've also added the ETag header, without any luck.</p>
<p>The code actually responsible for sending the file looks something like this:</p>
<pre><code>Context.Response.Buffer = true;
Context.Response.ContentType = "video/x-m4v";
Context.Response.AppendHeader("Content-Disposition", "filename=\"Video.m4v\"");
Context.Response.AppendHeader("Content-Length", "23456789");
Context.Response.AppendHeader("Accept-Ranges", "bytes");
Context.Response.AppendHeader("ETag", GetETag(path));
Context.Response.TransmitFile(path);
</code></pre>
<p>The code above which transmits files appears to be functioning correctly and video files play back correctly in all desktop browsers and when hosting from IIS 7.5 on Windows 7. The problem is only apparent when attempting to play video files on the iPhone using Mobile Safari using the above code with the ASP.NET web application being hosted on IIS 5.1 or IIS 6.0.</p>
<p>Has anyone else experienced anything like this and got any ideas on what I can do to get this working?</p>
http://stackoverflow.com/questions/1635209/playing-quicktime-video-on-iphone-using-httphandler-and-iis-5-1/1641098#16410980Answer by Mun for Playing Quicktime video on iPhone using HttpHandler and IIS 5.1Mun2009-10-29T01:10:10Z2009-10-29T01:10:10Z<p>After some searching, I came across the article <a href="http://dotnetslackers.com/articles/aspnet/Range-Specific-Requests-in-ASP-NET.aspx" rel="nofollow">Range-Specific Requests in ASP.NET</a> which describes the exact problem I was having. Implementing the <em>RangeRequestHandlerBase</em> class from this site (with some minor modifications to fit within our existing project structure) seems to have solved the problem, and video playback now operates correctly from IIS5/6.</p>
<p>@Eric - I've upvoted your answer as your comment was a nudge in the right direction. Simply adding the 'Accept-Ranges' header was not sufficient (despite working in IIS7), and the http handler needed to be modified to handle range requests and ensure that the correct data is being sent.</p>
http://stackoverflow.com/questions/1585945/where-to-find-small-programming-contracts-in-the-uk-if-possible/1586114#15861140Answer by Mun for Where to find small programming contracts (in the UK if possible)?Mun2009-10-18T21:42:15Z2009-10-18T21:42:15Z<p>Both <a href="http://www.freelancers.net/" rel="nofollow">Freelancers.net</a> and <a href="http://www.noagenciesplease.com/" rel="nofollow">No Agencies Please</a> have a strong UK focus, though there's often some duplication between postings and you'll see the same stuff on both of them.</p>
<p>You could try websites like <a href="http://www.elance.com" rel="nofollow">Elance</a>, <a href="http://www.guru.com" rel="nofollow">Guru.com</a>, <a href="http://www.odesk.com" rel="nofollow">oDesk</a>, etc but the rates offered on these types of sites are usually ridiculously low and seem like they're not worth the trouble. Personally, I'd recommend staying away from these.</p>
<p>Jeff Atwood has a good blog entry on these types of sites, <a href="http://www.codinghorror.com/blog/archives/001190.html" rel="nofollow">Can you really rent a coder?</a></p>
http://stackoverflow.com/questions/1546472/generate-random-strings-in-vb-net/1546524#15465240Answer by Mun for Generate random strings in vb.netMun2009-10-09T23:30:10Z2009-10-09T23:30:10Z<p>Here's a utility class I've got to generate random passwords. It's similar to JohnIdol's Typing Monkey, but has a little more flexibility in case you want generated strings to contain uppercase, lowercase, numeric or special characters.</p>
<pre><code>public static class RandomStringGenerator
{
private static bool m_UseSpecialChars = false;
#region Private Variables
private const int m_MinimumLength = 8;
private const string m_LowercaseChars = "abcdefghijklmnopqrstuvqxyz";
private const string m_UppercaseChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
private const string m_NumericChars = "123456890";
private const string m_SpecialChars = "~?/@#!£$%^&*+-_.=|";
#endregion
#region Public Methods
/// <summary>
/// Generates string of the minimum length
/// </summary>
public static string Generate()
{
return Generate(m_MinimumLength);
}
/// <summary>
/// Generates a string of the specified length
/// </summary>
/// <param name="length">The number of characters to generate</param>
public static string Generate(int length)
{
return Generate(length, Environment.TickCount);
}
#endregion
#region Private Methods
/// <summary>
/// Generates a string of the specified length using the specified seed
/// </summary>
private static string Generate(int length, int seed)
{
// Generated strings must contain at least 3 of the following character groups: uppercase letters, lowercase letters
// numerals, and special characters (!, #, $, £, etc)
// The generated string must be at least 4 characters so that we can add a single character from each group.
if (length < 4) throw new ArgumentException("String length must be at least 4 characters");
StringBuilder SB = new StringBuilder();
Random rand = new Random(seed);
// Ensure that we add all of the required groups first
SB.Append(GetRandomCharacter(m_LowercaseChars, rand));
SB.Append(GetRandomCharacter(m_UppercaseChars, rand));
SB.Append(GetRandomCharacter(m_NumericChars, rand));
if (m_UseSpecialChars)
SB.Append(GetRandomCharacter(m_SpecialChars, rand));
// Now add random characters up to the end of the string
while (SB.Length < length)
{
SB.Append(GetRandomCharacter(GetRandomString(rand), rand));
}
return SB.ToString();
}
private static string GetRandomString(Random rand)
{
int a = rand.Next(3);
switch (a)
{
case 1:
return m_UppercaseChars;
case 2:
return m_NumericChars;
case 3:
return (m_UseSpecialChars) ? m_SpecialChars : m_LowercaseChars;
default:
return m_LowercaseChars;
}
}
private static char GetRandomCharacter(string s, Random rand)
{
int x = rand.Next(s.Length);
string a = s.Substring(x, 1);
char b = Convert.ToChar(a);
return (b);
}
#endregion
}
</code></pre>
<p>To use it:</p>
<pre><code>string a = RandomStringGenerator.Generate(); // Generate 8 character random string
string b = RandomStringGenerator.Generate(10); // Generate 10 character random string
</code></pre>
<p>This code is in C# but should be fairly easy to convert to VB.NET using a <a href="http://converter.telerik.com/" rel="nofollow">code converter</a>.</p>
http://stackoverflow.com/questions/620265/can-i-set-up-html-email-templates-in-c-on-asp-net/620373#62037310Answer by Mun for Can I set up HTML/Email Templates in C# on ASP.NET?Mun2009-03-06T20:51:15Z2009-10-05T17:02:33Z<p>You might also want to try loading a control, and then rendering it to a string and setting that as the HTML Body:</p>
<pre><code>// Declare stringbuilder to render control to
StringBuilder sb = new StringBuilder();
// Load the control
UserControl ctrl = (UserControl) LoadControl("~/Controls/UserControl.ascx");
// Do stuff with ctrl here
// Render the control into the stringbuilder
StringWriter sw = new StringWriter(sb);
Html32TextWriter htw = new Html32TextWriter(sw);
control.RenderControl(htw);
// Get full body text
string body = sb.ToString();
</code></pre>
<p>You could then construct your email as usual:</p>
<pre><code>MailMessage message = new MailMessage();
message.From = new MailAddress("from@email.com", "from name");
message.Subject = "Email Subject";
message.Body = body;
message.BodyEncoding = Encoding.ASCII;
message.IsBodyHtml = true;
SmtpClient smtp = new SmtpClient("server");
smtp.Send(message);
</code></pre>
<p>You user control could contain other controls, such as a header and footer, and also take advantage of functionality such as data binding.</p>
http://stackoverflow.com/questions/1442302/how-can-i-preserve-the-querystring-semantics-when-converting-an-mfc-chttpserver-b/1442358#14423580Answer by Mun for How can I preserve the QueryString semantics when converting an MFC CHttpServer based web server to ASP.Net?Mun2009-09-18T02:46:56Z2009-09-18T02:46:56Z<p>Not sure if solves your problem, but you could try using Request.PathInfo. This will give you everything entered after the page, which you could then parse manually using something like a regex.</p>
<p>For example, if you had the URL:</p>
<pre><code>http://host/path/dllname.dll?MyPage?21&22&23&24&string5&string6&string7&28
</code></pre>
<p>The Request.PathInfo property would return:</p>
<pre><code>?MyPage?21&22&23&24&string5&string6&string7&28
</code></pre>
<p>Processing this into a set of values that you can work with could also be problematic as you've got both named and un-named parameters, but this should be achievable using regular expressions and/or splitting the string.</p>
http://stackoverflow.com/questions/272694/using-full-text-search-with-pdf-files-in-sql-server-20051Using full-text search with PDF files in SQL Server 2005Mun2008-11-07T16:51:41Z2009-09-10T13:03:51Z
<p>I've got a strange problem with indexing PDF files in SQL Server 2005, and hope someone can help. My database has a table called MediaFile with the following fields - MediaFileId int identity pk, FileContent image, and FileExtension varchar(5). I've got my web application storing file contents in this table with no problems, and am able to use full-text searching on doc, xls, etc with no problems - the only file extension not working is PDF. When performing full-text searches on this table for words which I know exist inside of PDF files saved in the table, these files are not returned in the search results.</p>
<p>The OS is Windows Server 2003 SP2, and I've installed <a href="http://www.adobe.com/support/downloads/detail.jsp?ftpID=2611" rel="nofollow">Adobe iFilter 6.0</a>. Following the instructions on <a href="http://weblogs.asp.net/wallym/archive/2005/02/28/382060.aspx" rel="nofollow">this blog entry</a>, I executed the following commands:</p>
<pre><code>exec sp_fulltext_service 'load_os_resources', 1;
exec sp_fulltext_service 'verify_signature', 0;
</code></pre>
<p>After this, I restarted the SQL Server, and verified that the iFilter for the PDF extensions is installed correctly by executing the following command:</p>
<pre><code>select document_type, path from sys.fulltext_document_types where document_type = '.pdf'
</code></pre>
<p>This returns the following information, which looks correct:</p>
<blockquote>
<p>document_type: .pdf<br/>
path: C:\Program Files\Adobe\PDF IFilter 6.0\PDFFILT.dll</p>
</blockquote>
<p>Then I (re)created the index on the MediaFile table, selecting FileContent as the column to index and the FileExtension as its type. The wizard creates the index and completes successfully. To test, I'm performing a search like this:</p>
<pre><code>SELECT MediaFileId, FileExtension FROM MediaFile WHERE CONTAINS(*, '"house"');
</code></pre>
<p>This returns DOC files which contain this term, but not any PDF files, although I know that there are definitely PDF files in the table which contain the word <em>house</em>.</p>
<p>Incidentally, I got this working once for a few minutes, where the search above returned the correct PDF files, but then it just stopped working again for no apparent reason.</p>
<p>Any ideas as to what could be stopping SQL Server 2005 from indexing PDF's, even though Adobe iFilter is installed and appears to be loaded?</p>
http://stackoverflow.com/questions/1395225/store-state-of-my-checkbox-list/1395407#13954070Answer by Mun for Store state of my checkbox list Mun2009-09-08T18:01:43Z2009-09-08T18:01:43Z<p>There's no guaranteed method of having the values retained if they visit the page again but not if they use the back button. You could try setting the page headers so that the page is not cached as a precaution against the user seeing invalid data.</p>
<p>In the Page_Init stage of the page lifecycle, you can populate your checkbox list with the values from your XML file, and then in the Page_Load stage, check that the page isn't be posted back and select the checkboxes accordingly using the values in the session.</p>
<p>Eg. in C# -</p>
<pre><code>protected void Page_Init(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
// Populate checkbox list from XML
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
List<string> list = Session["MyList"] as List<string>;
if (list != null)
{
foreach (int val in list)
{
ListItem chk = myCheckBoxList.Item.FindByValue(val);
if (chk != null)
chk.Checked = true;
}
}
}
}
protected void SaveButton_Click(object sender, EventArgs e)
{
List<string> list = new List<string>();
foreach (ListItem li in myCheckBoxList.Items)
{
if (li.Checked)
{
list.Add(li.Value);
}
}
Session["MyList"] = list;
}
</code></pre>
<p>This code hasn't been tested, but could be used a starting point. You can convert the code to VB.NET using a code converter, <a href="http://converter.telerik.com/" rel="nofollow">such as the one from Telerik</a>.</p>
http://stackoverflow.com/questions/1390956/creating-asp-net-web-application-with-multiple-skins1Creating ASP.NET web application with multiple skins?Mun2009-09-07T21:05:30Z2009-09-07T21:19:57Z
<p>I'm currently in the process of developing an ASP.NET WebForms application that will have multiple skins. The way I'm thinking of approaching this is to have each skin in a completely separate folder, which will contain all images and CSS, and the CSS will reference images accordingly.</p>
<p>The folder structure would be something like this:</p>
<ul>
<li>/Default.aspx</li>
<li>/Skins/Master.css</li>
<li>/Skins1/Skin1/Skin1.css</li>
<li>/Skins1/Skin1/Images/ ...</li>
<li>/Skins1/Skin1/Skin2.css</li>
<li>/Skins1/Skin2/Images/ ...</li>
<li>/Skins1/Skin1/Skin3.css</li>
<li>/Skins1/Skin3/Images/ ...</li>
</ul>
<p>So, for example, we might have:</p>
<pre><code><div id="foo-logo"></div>
<a href="/bar/"><div id="bar-logo"></div></a>
</code></pre>
<p>And then in the CSS:</p>
<pre><code>#top-logo { height: 100px; width:200px; background:url(images/foo-logo.jpg); }
#bar-logo { height: 50px; width:100px; background:url(images/bar-logo.jpg); }
</code></pre>
<p>My logic behind this is to avoid having references to the skin folder in-line with the code, like this:</p>
<pre><code><img src="/skins/<%=Settings.CurrentSkin%>/images/foo-logo.jpg" />
<a href="/bar/"><img src="/skins/<%=Settings.CurrentSkin%>/images/bar-logo.jpg" /></a>
</code></pre>
<p>This way, the HTML will remain clean and be completely independent, and it will be possible to completely change the skin simply by referencing a different CSS file and remove the need to update image tags.</p>
<p>The main downsides of this that I can think of are:</p>
<ul>
<li>Image dimensions on the containing element will need to be specifically specified in CSS as they will be implemented as CSS background-images</li>
<li>Web application may not degrade as well if important brand elements such as the logo are only visible with CSS</li>
</ul>
<p>Is there anything else I should be aware of when using this method and/or is there a better way of achieving this?</p>
http://stackoverflow.com/questions/1332400/how-can-request-validation-be-disabled-for-httphandlers0How can Request Validation be disabled for HttpHandlers?Mun2009-08-26T04:56:27Z2009-08-26T05:19:25Z
<p>Is it possible to disable request validation for HttpHandlers?</p>
<p>A bit of background - I've got an ASP.NET web application using an HttpHandler to receive the payment response from WorldPay. The IIS logs show that the handler is being called correctly from WorldPay, but the code inside the handler is never called.</p>
<p>If I create a physical ASPX page and set <em>ValidateRequest=false</em> in the header, and put the same code in the Page_Load method, the code is called without any problems.</p>
<p>This solves the problem, though I'd prefer to stick with using an HttpHandler for this as it's better suited for this type of functionality, rather than having an empty ASPX page, though this is dependent on being able to disable request validation.</p>
<p>The web application is using ASP.NET 2.0 and the server is IIS6.</p>
http://stackoverflow.com/questions/1307629/asp-net-navigate-to-anchor-in-code-behind/1307968#13079681Answer by Mun for ASP.NET navigate to anchor in code behindMun2009-08-20T18:22:07Z2009-08-20T18:22:07Z<p>You could try using the <a href="http://plugins.jquery.com/project/LocalScroll" rel="nofollow">jQuery LocalScroll plugin</a>. Using this, you could scroll using:</p>
<pre><code>$(function() {
$.scrollTo("#message");
});
</code></pre>
<p>Or with your ASP.NET code:</p>
<pre><code>protected void ButtonSend_Click(object sender, EventArgs e)
{
this.ClientScript.RegisterStartupScript(this.GetType(),
"navigate",
"$(function() { $.scrollTo('#message'); });",
true);
}
</code></pre>
<p>It's not an ideal solution, especially if you're not using jQuery anywhere in your project already, but it might solve your problem.</p>
http://stackoverflow.com/questions/1303443/how-to-upload-a-file-with-ajax-like-what-gmail-does/1303448#13034483Answer by Mun for how to upload a file with ajax,like what gmail does?Mun2009-08-20T01:04:51Z2009-08-20T01:04:51Z<p>GMail is actually using Flash for uploading files now... You could try looking into something like <a href="http://swfupload.org/" rel="nofollow">SWFUpload</a>.</p>
http://stackoverflow.com/questions/1173491/classic-asp-connecting-to-access-database-file-not-found/1174096#11740961Answer by Mun for classic asp connecting to access database, file not foundMun2009-07-23T19:53:46Z2009-07-23T19:53:46Z<p>You could try using <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> to see exactly which file is not being found or it is being caused by a permissions issue.</p>
<p>Also, although using forward slashes instead of backslashes isn't usually a problem, you may want to try changing that in case it makes any difference.</p>
<p>If you're using an x64 version of windows, JET is not supported in this mode, though you can get around it by <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/405f5bb5-87a3-43d2-8138-54b75db73aa1.mspx?mfr=true" rel="nofollow">configuring IIS to run x32 applications</a>. To do this, run the following at the command line:</p>
<pre><code>cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 "true"
iisreset
</code></pre>
<p>The second command may not be required, but I'm guessing that you would probably need to restart IIS before this change takes effect.</p>
<p>It sounds like the code was previously set to use a global DSN, hence the lack of a path in the connection string, though there should have still been some kind of connection details (like the DSN name).</p>
http://stackoverflow.com/questions/1165084/log4net-rolling-daily-filename-with-date-in-the-file-name/1165112#11651123Answer by Mun for Log4net rolling daily filename with date in the file nameMun2009-07-22T13:02:59Z2009-07-22T13:02:59Z<p>In your Log4net config file, use the following parameter with the RollingFileAppender:</p>
<pre><code><param name="DatePattern" value="dd.MM.yyyy'.log'" />
</code></pre>
http://stackoverflow.com/questions/285074/radio-buttons-getting-deselected-when-dragging-item-using-jquery-sortables2Radio Buttons getting deselected when dragging item using jQuery SortablesMun2008-11-12T19:37:53Z2009-06-24T17:00:03Z
<p>I'm using the <a href="http://docs.jquery.com/UI/Sortables" rel="nofollow">jQuery UI sortables</a> plugin to allow re-ordering of some list items. Inside each list item, I've got a couple of radio buttons which allow the item to be enabled or disabled.</p>
<p>When the item is dragged, both radio buttons get deselected, which doesn't seem like it should be happening. Is this correct behavior, and if not, what is the best way to work around this?</p>
<p>Here is a code sample demonstrating this problem:</p>
<pre><code><!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>
<title>jQuery Sortables Problem</title>
<script src="jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="jquery-ui.min.js" type="text/javascript"></script>
<style type="text/css">
.items
{
margin-top: 30px;
margin-left: 0px;
padding-left: 25px;
cursor: move;
}
.items li
{
padding: 10px;
font-size: 15px;
border: 1px solid #666;
background: #eee;
width: 400px;
margin-bottom: 15px;
float: left;
clear:both;
}
</style>
</head>
<body>
<ol id="itemlist" class="items">
<li id="1" class="item">
Item 1
<input name="status_1" type="radio" value="1" checked="checked" />enabled
<input name="status_1" type="radio" value="0" />disabled
</li>
<li id="2" class="item">
Item 2
<input name="status_2" type="radio" value="1" checked="checked" />enabled
<input name="status_2" type="radio" value="0" />disabled
</li>
<li id="3" class="item">
Item 3
<input name="status_3" type="radio" value="1" checked="checked" />enabled
<input name="status_3" type="radio" value="0" />disabled
</li>
<li id="4" class="item">
Item 4
<input name="status_4" type="radio" value="1" checked="checked" />enabled
<input name="status_4" type="radio" value="0" />disabled
</li>
</ol>
<script type="text/javascript">
$('#itemlist').sortable();
</script>
</body>
</html>
</code></pre>
<p>As soon as a list item is grabbed with the mouse, both the radio buttons get deselected.</p>
<p>If this is a bug, one workaround would be to automatically select the 'enabled' radio button when the item is moved, so any advice on how to achieve this would also be most appreciated.</p>
<p>Update: I've tested this in FireFox 3, Internet Explorer 7, Opera 9.5, and Safari 3.1.2, all on Windows XP x64, and this issue occurs in all of them.</p>
http://stackoverflow.com/questions/6899/is-there-a-way-to-create-a-mssql-function-to-join-multiple-rows-from-a-subquery/6980#69807Answer by Mun for Is there a way to create a MSSQL function to "join" multiple rows from a subquery into a single delimited field?Mun2008-08-10T01:05:00Z2009-06-18T11:45:43Z<p>If you're using SQL Server 2005, you could use the FOR XML PATH command.</p>
<pre><code>SELECT [VehicleID]
, [Name]
, (SELECT CAST(City + ', ' AS VARCHAR(MAX))
FROM [Location]
WHERE (VehicleID = Vehicle.VehicleID)
FOR XML PATH ('')
) AS Locations
FROM [Vehicle]
</code></pre>
<p>It's a lot easier than using a cursor, and seems to work fairly well.</p>
http://stackoverflow.com/questions/976612/triggering-an-action-after-paypal-buy-now-purchase-is-complete1Triggering an action after Paypal Buy-Now purchase is completeMun2009-06-10T16:09:45Z2009-06-12T23:09:07Z
<p>I've got a web application with a form where users can sign up for a seminar. The process is currently as follows:</p>
<ol>
<li>Register for seminar</li>
<li>Registration success page with Paypal Buy-Now button to make payment</li>
<li>Paypal payment</li>
<li>Registration completion page</li>
</ol>
<p>At present, emails are sent to the admin and the user at step 2 after registering confirming their registration. This needs to be changed so that the emails are actually sent in step 4, after payment has been made.</p>
<p>The application is built in ASP.NET, and all of the code to send emails, etc is all done. I'm curious as to what is the best way to trigger a process on the main website using the users details after they have completed the Paypal payment process.</p>
<p>From what I can see, there are the following options:</p>
<ol>
<li><p>Store the data in the session. When the user returns to the registration completion page, retrieve the information and send the emails. My concern with this is that I've worked on a project in the past implementing this and it never worked very well, with the session getting lost.</p></li>
<li><p>Store the data in the database. Have the Paypal redirect include the transaction details in the querystring to the return page, which can retrieve the registration details using the email address and send the emails. However, this may not work if the email address used on Paypal is different from the one used to register (which is quite likely in this scenario).</p></li>
<li><p>Post all the details to Paypal, so that they are included in the transaction. Downsides: Won't send confirmation email to the user, only the admin (and assuming that the Paypal email address is the same as the email to which payment notifications should be sent). Also not sure if this can be used with hosted buttons.</p></li>
</ol>
<p>I'm sure this is a common problem, and any advice would be appreciated. Thanks.</p>
http://stackoverflow.com/questions/608480/best-way-to-stream-files-in-asp-net6Best way to stream files in ASP.NETMun2009-03-03T22:22:43Z2009-06-01T14:04:38Z
<p>What's the best way to stream files using ASP.NET?</p>
<p>There appear to be various methods for this, and I'm currently using the Response.TransmitFile() method inside an http handler, which sends the file to the browser directly. This is used for various things, including sending FLV's from outside the webroot to an embedded Flash video player.</p>
<p>However, this doesn't seem like a reliable method. In particular, there's a strange problem with Internet Explorer (7), where the browser just hangs after a video or two are viewed. Clicking on any links, etc have no effect, and the only way to get things working again on the site is to close down the browser and re-open it.</p>
<p>This also occurs in other browsers, but much less frequently. Based on some basic testing, I suspect this is something to do with the way files are being streamed... perhaps the connection isn't being closed properly, or something along those lines.</p>
<p>After trying a few different things, I've found that the following method works for me:</p>
<pre><code>Response.WriteFile(path);
Response.Flush();
Response.Close();
Response.End();
</code></pre>
<p>This gets around the problem mentioned above, and viewing videos no longer causes Internet Explorer to hang.</p>
<p>However, my understanding is that Response.WriteFile() loads the file into memory first, and given that some files being streamed could potentially be quite large, this doesn't seem like an ideal solution.</p>
<p>I'm interested in hearing how other developers are streaming large files in ASP.NET, and in particular, streaming FLV video files.</p>
http://stackoverflow.com/questions/932301/asp-net-find-dropdown-value-inside-repeater-control/932326#9323262Answer by Mun for ASP.NET Find DropDown Value Inside Repeater ControlMun2009-05-31T15:59:53Z2009-05-31T16:09:50Z<p>You would need to loop through the repeater items and get each value. Code sample below is in C#, but should be able to convert to VB.NET relatively easily.</p>
<pre><code>foreach (RepeaterItem ri in myRepeater.Items)
{
switch (ri.ItemType)
{
case ListItemType.Item:
case ListItemType.AlternatingItem:
DropDownList AdTitle = (DropDownList) ri.FindControl("AdTitle");
TextBox AdFullName = (TextBox) ri.FindControl("AdFullName");
string selectedAdTitle = AdTitle.SelectedValue;
string enteredAdFullName = AdFullName.Text;
// Do something with values here
break;
}
}
</code></pre>
http://stackoverflow.com/questions/907715/how-can-i-change-a-web-sevice-url-with-out-recompiling/907742#9077420Answer by Mun for How can I change a Web Sevice URL with out recompiling?Mun2009-05-25T19:03:17Z2009-05-25T19:03:17Z<p>You could put the WebService URL in the web.config (or AppSettings.config) file and then set it at runtime.</p>
<pre><code>wsProxy proxy = new wsProxy();
wsProxy.Url = ConfigurationManager.AppSettings.Get("WebserviceUrl");
wsProxy.DoSomething();
</code></pre>
<p>This will allow you to change the WebService URL without recompiling the application.</p>
http://stackoverflow.com/questions/904968/where-should-i-store-version-information-about-my-asp-net-application/905021#9050211Answer by Mun for Where should I store version information about my ASP.NET application?Mun2009-05-25T01:13:04Z2009-05-25T01:13:04Z<p>The easiest way to store application version information is via the AssemblyInfo.cs file. You can have this update automatically using something like the UpdateVersion utility in conjunction with a pre-build event (see <a href="http://stackoverflow.com/questions/826777/how-to-have-an-auto-incrementing-version-number-visual-studio/">this StackOverflow question</a> for more details).</p>
<p>On a related note, I've got a blog entry which you might find useful, with details on how to build an <a href="http://www.munsplace.com/blog/2009/02/09/aspnet-about-page/" rel="nofollow">ASP.NET About Page</a> that can pull the information from the AssemblyInfo file into your web application along with details of other assemblies in the bin folder.</p>
http://stackoverflow.com/questions/887646/include-html-file-in-c-code/887788#8877880Answer by Mun for Include HTML file in C# codeMun2009-05-20T13:08:05Z2009-05-20T13:08:05Z<p>The use of include files in ASP.NET has generally been superseded by user controls which are much more powerful. Here's another alternative to using include files:</p>
<p>ASPX:</p>
<pre><code><asp:Literal ID="FrameLiteral" runat="server" />
</code></pre>
<p>Code behind:</p>
<pre><code>private string GetFrameContent(int arg)
{
string filename = (arg == 1) ? "LeftFrame.htm" : "LeftFrameOthers.htm";
string path = Server.MapPath("./" + filename);
string content = System.IO.File.ReadAllText(path);
return content;
}
// Populate Literal
FrameLiteral.Text = GetFrameContent(arg);
</code></pre>
<p>Not as elegant as doing it with user controls, but it should do the job and is relatively neat and tidy.</p>
http://stackoverflow.com/questions/530683/what-is-the-purpose-of-the-assemblies-node-in-web-config1What is the purpose of the Assemblies node in Web.Config?Mun2009-02-10T00:40:05Z2009-05-20T11:17:55Z
<p>When creating a new ASP.NET AJAX Web Application in Visual Studio 2005, the default web.config contains the following section (inside the <em>compilation</em> node):</p>
<pre><code><assemblies>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
</code></pre>
<p>Whether or not the <em>assemblies</em> node exists doesn't seem to affect the AJAX functionality. Update panels, etc work fine regardless of whether or not the reference to System.Web.Extensions is included in Web.Config.</p>
<p>What's the purpose of this section, and can it be safely removed?</p>
http://stackoverflow.com/questions/831134/javascript-working-with-asp-net-code-behind/831269#8312690Answer by Mun for Javascript working with ASP.NET code behindMun2009-05-06T19:21:10Z2009-05-06T19:21:10Z<p>I'd recommend subclassing the standard button control for this, so that you can re-use the code again in future.</p>
<pre><code>namespace MyApp.Controls
{
public class PromptButton
{
public string Prompt { get; set; }
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
if (!string.IsNullOrEmpty(Prompt))
{
// Escape apostrophe's in the prompt message
string safePrompt = Prompt.Replace("'", "\'");
// Add the onClick to show the alert box when clicked
Attributes.Add("onClick", string.Format("return confirm('{0}')", safePrompt));
}
}
}
}
</code></pre>
<p>Once you've done this, you can add a reference at the top of your ASPX page or in web.config:</p>
<pre><code><%@ Register Assembly="MyAssembly" Namespace="MyApp.Controls" TagPrefix="app" %>
</code></pre>
<p>In your page, you'd then use the following:</p>
<pre><code><app:PromptButton ID="PromptButton1" Prompt="Are you sure?" OnClick="PromptButton1_Click" runat="server" />
</code></pre>
<p>This would result in the Javascript confirm dialog box being displayed, and if the user clicks 'OK', the postback would occur. If the user clicks 'Cancel', nothing would happen.</p>
<p>It's a little more work on the outset, but the code is a lot more reusable, and could even be moved into a separate library altogether and used across multiple projects.</p>
http://stackoverflow.com/questions/1722871/asp-net-caching-for-web-application-with-multiple-domain-names/1722885#1722885Comment by Mun on ASP.NET caching for web application with multiple domain namesMun2009-11-12T17:39:07Z2009-11-12T17:39:07ZThanks. Was hoping that there was something standard in ASP.NET that could be used to achieve this rather than using another external dependency, but I'll check this out.http://stackoverflow.com/questions/1635209/playing-quicktime-video-on-iphone-using-httphandler-and-iis-5-1/1635496#1635496Comment by Mun on Playing Quicktime video on iPhone using HttpHandler and IIS 5.1Mun2009-10-28T14:09:52Z2009-10-28T14:09:52ZThanks for the tips. The video actually plays back fine in Safari on Windows, and in Firefox too when using the iPhone user agent string, so I don't think it's something with this. The issue looks like it's more something to do with how IIS5/6 are transmitting the files as opposed to IIS7, which doesn't allow the iPhone to play it. Haven't used network monitoring tools much before, but will check out NetMon/Wireshark and see if they can help.http://stackoverflow.com/questions/620265/can-i-set-up-html-email-templates-in-c-on-asp-net/620373#620373Comment by Mun on Can I set up HTML/Email Templates in C# on ASP.NET?Mun2009-10-05T17:03:42Z2009-10-05T17:03:42Z@Kirschstein Thanks, fixed.http://stackoverflow.com/questions/1390956/creating-asp-net-web-application-with-multiple-skinsComment by Mun on Creating ASP.NET web application with multiple skins?Mun2009-09-07T21:21:35Z2009-09-07T21:21:35ZThe web application is going to have multiple URLs, and the skin will be selected based on the URL that is being used to accessed it.http://stackoverflow.com/questions/1332400/how-can-request-validation-be-disabled-for-httphandlers/1332483#1332483Comment by Mun on How can Request Validation be disabled for HttpHandlers?Mun2009-08-26T05:52:45Z2009-08-26T05:52:45ZHaven't tried this yet, but it seems like modifying web.config would be a trade-off between disabling request validation for all pages to get it working for this handler, which has its own set of problems. I'm also doubtful that putting the web.config in the same directory as the class implementing IHttpHandler would work, as the code is compiled using a web deployment project and the code file itself is never deployed so its location on disk has no relevance?http://stackoverflow.com/questions/367198/iphone-high-scores-framework/367553#367553Comment by Mun on iPhone High Scores Framework?Mun2009-07-26T16:17:58Z2009-07-26T16:17:58ZIt looks like the plans for Onyx Online have actually been canceled according to this blog entry: <a href="http://demiforce.blogspot.com/2009/03/onyx-rip.html" rel="nofollow">demiforce.blogspot.com/2009/03/…</a>http://stackoverflow.com/questions/1173491/classic-asp-connecting-to-access-database-file-not-found/1174096#1174096Comment by Mun on classic asp connecting to access database, file not foundMun2009-07-24T04:44:41Z2009-07-24T04:44:41ZI'm inclined to agree with Seth, it still sounds like a permissions problem. Have you tried renaming the file and moving it to a different location? I'd recommend putting it in the root, eg. c:\db.mdb and trying to connect to it there (keeping process monitor open as well to monitor things).http://stackoverflow.com/questions/1002043/reading-editing-id3-tags-taglib-sharp-on-windowsComment by Mun on Reading/Editing ID3 tags: TagLib Sharp on Windows?Mun2009-06-16T15:08:49Z2009-06-16T15:08:49ZCan you clarify? I've used TagLib# on a few projects all developed and deployed on Windows without any problems. Once you've referenced the assembly, you should be able to use it to access ID3 tags from within your VS.NET project.http://stackoverflow.com/questions/976612/triggering-an-action-after-paypal-buy-now-purchase-is-complete/989459#989459Comment by Mun on Triggering an action after Paypal Buy-Now purchase is completeMun2009-06-13T03:46:32Z2009-06-13T03:46:32ZThanks. Also came to the same conclusion after reading through the Paypal documentation a bit more. Haven't implemented it yet, but it seems like it's the best way to solve this issue.http://stackoverflow.com/questions/932301/asp-net-find-dropdown-value-inside-repeater-control/932326#932326Comment by Mun on ASP.NET Find DropDown Value Inside Repeater ControlMun2009-05-31T16:10:14Z2009-05-31T16:10:14ZThanks Nick, added semi-colon.http://stackoverflow.com/questions/14878/asp-net-ajaxtoolkit-vs-other-third-party-ajax-controls-telerik-etc/795720#795720Comment by Mun on ASP.NET AjaxToolKit vs other third party Ajax controls (Telerik, etc)Mun2009-04-28T00:08:19Z2009-04-28T00:08:19ZIn Telerik's defense, they do offer a source code option, which also includes a subscription and priority support, so you get all product updates for a year. Costing only an additional $200, this seems worthwhile for developers who need the source code (not forgetting that it also includes product updates). <a href="http://www.telerik.com/purchase/individual/aspnet-ajax.aspx" rel="nofollow">telerik.com/purchase/individual/…</a>http://stackoverflow.com/questions/764247/why-are-regular-expressions-considered-so-controversial/764355#764355Comment by Mun on Why are regular expressions considered so controversial?Mun2009-04-19T03:07:00Z2009-04-19T03:07:00ZOn a side note, Expresso and The Regex Coach are very useful tools for constructing regular expressions.http://stackoverflow.com/questions/714046/how-can-you-move-asp-net-controls-to-different-places-on-the-web-form-at-runtime/714285#714285Comment by Mun on How can you move ASP.Net controls to different places on the Web form at runtime?Mun2009-04-03T20:27:44Z2009-04-03T20:27:44ZIf you're subclassing a standard ASP.NET control, then rather than loading a control, you could create an instance of your control instead, and then add it to the placeholder. I've updated the code sample above to reflect this.http://stackoverflow.com/questions/710062/using-modrewrite-to-convert-folders-to-querystring/712090#712090Comment by Mun on Using mod_rewrite to convert folders to querystringMun2009-04-03T00:44:11Z2009-04-03T00:44:11ZThanks, the QSA flag is what I was looking for :-)http://stackoverflow.com/questions/620265/can-i-set-up-html-email-templates-in-c-on-asp-net/620373#620373Comment by Mun on Can I set up HTML/Email Templates in C# on ASP.NET?Mun2009-03-26T21:19:32Z2009-03-26T21:19:32ZYep, you could use either solution... They work in the same way. One benefit of this approach is consistency. For example, you could show a user an order summary and include exactly the same thing in the confirmation email by reusing the same control.