-
IIS6 Change Framework Version without restart of W3SVC service
browse to the location of the folder containing the version of asp_net regiis such as: C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319 run aspnet_regiis -lk to get the virtual path you will need in the next command. to see which ID matches your website launch IIS manager and under websites you will see a column called “identifier”. run the command: aspnet_regiis.exe…
-
microsoft expressions split clips into multiple files
open expressions (select transcode project) file->new job import file select all your encoding video/audio settings set your clips (click on location in timeline then on the “insert edit at playhead button”) at this point you may have assumed clips would have encoded into separate files but this is not how expressions works inherently save your…
-
iis 6 redirect with querystring
Permanent site redirects using IIS are useful when moving a site to a new domain and also more search engine friendly than simply doing a javascript or server side redirect. These send a “301” response status code To do this in IIS 6, simply open the website properties in IIS 6, select “a redirection to…
-
asp .net could not establish trust relationship for the SSL/TLS secure channel
A quick google search revealed multiple reported resolutions, however, after following the steps in the MSDN blog reference listed below, the issue was still unresolved in my situation. Additional details in the stack trace will reveal another similar message: “The remote certificate is invalid according to the validation procedure.” In this specific scenario, the site…
-
c# .net split strings with math divrem using lambda linq
Recently I came across a nice alternative to loops using linq for evenly splitting a string using Math.DivRem. The following example illustrates how this can be used to parse a sequence of numbers based on a time series which may give variable results in a custom messaging protocol. (inspired by R. Prestol) A significant figure…
