| Thread | Last Post | Replies |
|
| C# and IIS | 17 Nov 2007 15:32 GMT | 2 |
I have created a script that creates a website in IIS6 and sets it up OK but the code im using to enable the "anonymous access" doesnt seem to work, when I complile it there are no errors, the code is: w3svc.Properties["AuthFlags"].Value = 1;
|
| Basic C# questions | 17 Nov 2007 13:54 GMT | 3 |
Q1: if (...) { byte[] var1 = new byte[4];
|
| How to communicate with explorer? | 17 Nov 2007 13:42 GMT | 4 |
Is there a way to open explorer in a cretin page, write in a cretin column that is in this page and press the send button with a C# program? I want to let the program check my web site for security issues (Sql
|
| Socket connect/disconnect, ReuseAddress, and TIME_WAIT | 17 Nov 2007 13:37 GMT | 7 |
Visual Studio 2005, .Net 2.0, Vista, XP. I have a client Tcp socket that is bound to a particular port and connecting to a remote host. In order to allow reconnects I'm setting the ReuseAddress socket option. This is somewhat dubious I know, but...
|
| Cannot read psexec output | 17 Nov 2007 07:38 GMT | 1 |
I'm trying to use the Process/ProcessStartInfo class to use sysinternals psexec tool to run a remote command but I'm unable to get the output. The same command thru a DOS window runs fine on a remote server.
|
| Animating one object moving in front of another | 17 Nov 2007 07:04 GMT | 10 |
I want to animate one object moving in front of another. I cannot re-render the background as the object moves, as it would be extremely time consuming. This is what I would like to do. I draw the background to a Graphics object, copy it, draw the front object on the original, ...
|
| Trace across AppDomains | 17 Nov 2007 03:53 GMT | 3 |
If this is simple, forgive my ignorance, but I'm coming from the CompactFramework where we don't use AppDomains. I did a fair bit of archive searching and couldn't find an answer and I got no responsed in the remoting group after a week, so I'm throwing a little wider net this ...
|
| Embedded scripting language | 17 Nov 2007 02:37 GMT | 4 |
I'm writing an application that will allow users to specify their own rules to match against certain patterns. Initially I figured that I would offer my own interpreter (byte[14] == 7 && byte[17] begins 'abc') but I quickly realised that I can offer
|
| Is .NET SDK the same as .NET framework class library | 17 Nov 2007 02:32 GMT | 1 |
I have VS2005. In the VS2005 I have a folder called v2.0. The .NET framework class library is version 2.0 for VS2005. So is .NET SDK the same as .NET framwork class library.
|
| XSL Question | 17 Nov 2007 01:51 GMT | 4 |
When the XSL is loaded and run Is it compiled and ran each time tks
|
| Making a collection inside a class | 17 Nov 2007 00:48 GMT | 6 |
How do you make a collection inside a class and then access it? I am trying to make a class that is a news item and dont know where to really start. Any ideas?
|
| General question on using Interfaces | 16 Nov 2007 23:39 GMT | 6 |
I have a few dll's that return their own version of Account objects. In the asp code I am writing now I would like to define an interface, called IAccount, and convert each of these objects ( dll1.Account, dll2.Account...) upon return so I can deal with them synonymously.
|
| Extensions to my BigInteger and BigRational classes | 16 Nov 2007 22:21 GMT | 2 |
I am currently working on a some simple (not really) classes called BigInteger and BigRational. They are pretty much identical to Java's BigInteger and BigDecimal classes, respectfully. BigRational is really simple and it just maintains a dividend and
|
| Hosting a web application within a windows form | 16 Nov 2007 22:13 GMT | 4 |
Hi, I wish to host a web application within a windows form. I don't believe my requirement would be satisfied by just using the WebBrowser control.
|
| Getting value of a GridView cell | 16 Nov 2007 22:11 GMT | 4 |
Can anyone help me out here? I am trying to get the value of a GV cell, code is below (Obviously not useful - But this is what I have ended up with during my testing). I have bound columns and template columns - e.Row.Cells[i].text() is
|