Nathan
|
Registered User
|
|
Dec 5 |
asked | How to Detect svn file/folder renames or moves with SharpSvn? |
|
Nov 24 |
comment |
Run EXE FROM CLIENT SIDE For clarification, do you mean that you want the exe to run on the server in response to an action initiated on the website? This is possible. Do you mean that you want the exe to automatically be invoked on the client machine? This is not possible (unless there is a security hole in the browser) due to security reasons stated in answers. |
|
Nov 23 |
comment |
Completely disable Django’s CSRF protection in SVN Trunk I'm not familiar with Django, but am familiar with CSRF - out of curiosity, why do you want to disable CSRF protection? In general, preventing CSRF attacks is a good thing. |
|
Nov 22 |
comment |
values on second form are not receiveing in php page This question is way too vague to receive any answers. Suggest you review catb.org/~esr/faqs/… |
|
Nov 16 |
awarded | ● Popular Question |
|
Nov 10 |
comment |
Any way to override .NET Windows Service Name without recompiling? My problem was that there apparently must be a space between the equal sign and the binPath value, e.g. sc create ahSchedulerService binPath= "MyService.exe", not sc create ahSchedulerService binPath="MyService.exe". |
|
Nov 10 |
comment |
Any way to override .NET Windows Service Name without recompiling? This looks like exactly what I want -- however I can't get it to work. I just keep getting a "usage" message. |
|
Nov 9 |
asked | Any way to override .NET Windows Service Name without recompiling? |
|
Oct 26 |
revised |
Sanitize search string for Dynamic SQL Queries corrected spelling |
|
Oct 26 |
comment |
Sanitize search string for Dynamic SQL Queries Ah. Sorry I misread that. Unfortunately the stupid new stackoverflow rules won't let me undo the down vote unless you edit the answer. |
|
Oct 26 |
comment |
Sanitize search string for Dynamic SQL Queries Adding semicolons doesn't help. I can get around those simply with a sql comment. |
|
Oct 26 |
answered | Sanitize search string for Dynamic SQL Queries |
|
Oct 12 |
awarded | ● Popular Question |
|
Oct 5 |
asked | Implications of Machine\ASPNET user as administrator role? |
|
Oct 4 |
awarded | ● Yearling |
|
Sep 30 |
comment |
I have a simple database of content. Should I hash the “id” so that people don’t look over it in the URL? Additional comment: hashes are completely predictable with a known text, still leaving you open to dictionary style attacks - applying a random salt to the hash can help - though depending on how you do it, you can still potentially leave yourself open to replay attacks. All this to underscore that you absolutely must implement a strong role based security mechanism. |
|
Sep 30 |
comment |
.NET scheduler that runs assemblies? +1 Posted duplicate answer before I saw yours. |
|
Sep 30 |
answered | .NET scheduler that runs assemblies? |
|
Sep 23 |
awarded | ● Notable Question |
|
Aug 27 |
comment |
SQL Server Check/NoCheck difference in generated scripts Found this article: sqlblog.com/blogs/tibor_karaszi/… So it appears that the second statement in the batch only ensures that the constraint is enabled, it doesn't actually check the existing data. To actually check the existing data, I need to ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all |
|
Aug 27 |
answered | SQL Server: How to make server check all its check constraints? |
|
Aug 27 |
comment |
SQL Server Check/NoCheck difference in generated scripts As for the second part of your answer, you are indeed correct that is_not_trusted is set on one of the databases, and not on the other. What affect does this have? |
|
Aug 27 |
revised |
SQL Server Check/NoCheck difference in generated scripts clarification |
|
Aug 27 |
comment |
SQL Server Check/NoCheck difference in generated scripts Actually, at this particular point in time, both databases are on the same server - so there's definitely not any Sql Server version differences |
|
Aug 27 |
comment |
SQL Server Check/NoCheck difference in generated scripts However, if you look at the two scripts scripts, immediately after adding the constraint, there is ALTER TABLE [dbo].[Profile] CHECK CONSTRAINT [FK_Profile_OrganizationID] GO Doesn't that check the constraints at that point? |
|
Aug 27 |
comment |
SQL Server Check/NoCheck difference in generated scripts However, if you look at the two scripts scripts, immediately after adding the constraint, there is ALTER TABLE [dbo].[Profile] CHECK CONSTRAINT [FK_Profile_OrganizationID] GO Doesn't that check the constraints at that point? |
|
Aug 26 |
asked | SQL Server Check/NoCheck difference in generated scripts |
|
Aug 24 |
comment |
Back button functionality using ASP.net MVC It's fairly common to block the referrer when you are behind a corporate firewall. |
|
Aug 10 |
asked | Asp.Net MVC 1.0 custom Modelbinders - how to handle form posts and parameter names? |
|
Aug 10 |
comment |
Any bugs or incompatibilities in 64 bit JVM? Could it also be that your 32 bit machine was single core, and your 64 bit machine was multi-core? Multiple cores tend to increase the probability of underlying threading issues manifesting themselves. However, I agree that bitness is unlikely to be the underlying issue. |
|
Aug 7 |
comment |
Is it possible to run multiple DDL statements inside a transaction (within SQL Server)? I would add that I would find DDL transactions very useful for a different set of circumstances - not updating on the fly, but ensuring that schema updates to a production database are never left in an inconsistent state. |
|
Aug 4 |
answered | ASP.NET Webservice corrupts uploaded file |
|
Aug 4 |
answered | Cannot Start IIS on my PC: COM+ System Application: Access is Denied |
|
Aug 4 |
comment |
Cannot Start IIS on my PC: COM+ System Application: Access is Denied I am having the same problem. Seems to happen randomly for me - a million reboots and it eventually works... for a while. |
|
Aug 3 |
accepted | (Fluent) NHibernate mapping for class with calculated properties |
|
Aug 3 |
answered | (Fluent) NHibernate mapping for class with calculated properties |
|
Aug 3 |
revised |
We have to use C “for performance reasons” corrected name of project: Monotone => Metronome |
|
Aug 3 |
answered | We have to use C “for performance reasons” |
|
Aug 3 |
comment |
OnClick does not work Do you get any errors in your javascript console? (most browsers have one) |
|
Jul 31 |
comment |
How to debug .NET Windows Service OnStart method? I put the Debugger.Launch in the main method, and now I am able to step into the code. Thanks! |
|
Jul 31 |
comment |
How to use C# generics in place of string and byte[] I would add for a reference: msdn.microsoft.com/en-us/library/… which gives an introduction to C# generics |
|
Jul 30 |
comment |
How to debug .NET Windows Service OnStart method? I am not seeing any .dbd files. I am also not familiar with .dbd files within the .net framework. Did you perhaps mean .pdb files? The .pdb files are in the root ouput of the build script, but I will need to check if they are getting copied by installutil - which I am a little bit new to. |
|
Jul 30 |
comment |
How to debug .NET Windows Service OnStart method? Also, if I click "break" when the exception window comes up, I get "No symbols are loaded for any call stack frame. The source code cannot be displayed." |
|
Jul 30 |
comment |
How to debug .NET Windows Service OnStart method? The build script does appear to be setting the configuration to debug mode. Is there any way to directly check the built assemblies? |
|
Jul 29 |
comment |
How to debug .NET Windows Service OnStart method? Yes, I have both Visual Studio 2005 Professional, and Visual Studio 2008 professional installed on the machine. |
|
Jul 28 |
comment |
How to debug .NET Windows Service OnStart method? This is not working for me. The error I get is Unhandled exception at 0x7c812aeb in xxxxService.exe: 0xC06D007E: Module not found, and the breakpoints are never reached. This is however, quite different then the error I am getting without the debugger.Launch code included. |
|
Jul 28 |
asked | How to debug .NET Windows Service OnStart method? |
|
Jul 24 |
comment |
Expert F# (Expert’s Voice in .Net) - is this a worthy book to learn F# from? FYI, while you were asking about "Expert F#" your amazon link is to "Foundations of F#" - two different books. Expert F# is found at amazon.com/Expert-F-Experts-Voice-Net/dp/… |
|
Jul 24 |
comment |
Data migration with Hibernate OTH, completely funny... |
|
Jul 24 |
comment |
Data migration with Hibernate This question needs more detail in order to give a reasonable answer. |
