Search Results

2
votes

Transferring extended ascii characters with unknown encoding to a Twisted XMLRPC from C#

I don't think there is really a better way then base64 encoding. As long as you do not know the encoding, you have no other possibility as to handle it as a byte array. The only change I would sugg …
2
votes

How to convert a Unicode character to its ASCII equivalent

You cannot use the default ASCII encoding (Encoding.ASCII) here, but must create the encoding with the appropriate code page using Encoding.GetEncoding(...). You might try to use code page 1252, wh …
3
votes

How can I redirect to a page when the user session expires?

You can handle this in global.asax in the Session_Start event. You can check for a session cookie in the request there. If the session cookie exists, the session has expired: pub …
1
vote

RightNow CRM XML API - Anyone familiar with it?

I don't know RightNow CRM, but according to the documentation you can send the XML requests using HTTP post. The simplest way to do this in .NET is using the WebClient class. Alternatively you migh …
0
votes

Intercept Windows Vista shutdown event in C#

The SessionEnding / SessionEnded events on Microsoft.Win32.SystemEvents might be what you are looking for. …
0
votes

.NET XmlDocument LoadXML and Entities

Entity references are not encoding specific. According to the W3C XML 1.0 Recommendation: …
0
votes

How can I share application configuration in a .net application?

You can also put the configuration settings into the machine.config to share them amongst multiple applications. This makes deployment more problematic though. …
0
votes

How do you ‘clone’ WebControls in C# .NET ?

The way to do this in ASP.NET is using templates. There are samples in MSDN for this, just look for templated controls / ITemplate. …
1
vote

Unit test Custom membership provider with NUnit throws null reference error

I'm quite sure you should call provider.Initialize(...) in your test code before calling CreateUser. …
0
votes

C# - How to change HTML elements attributes

All the parts have already been provided in previous answers, but to put the whole thing together, you'll need to: add the runat="server" attribute to the <ul> and < …
1
vote

C# nullable string error

String is a reference type, so you don't need to (and cannot) use Nullable<T> here. Just declare typeOfContract as string and simply check for null after getting it from the quer …
1
vote

Why is the behaviour of datetime in JSON different on different systems (win xp, server 2003)?

I would suspect this has to do with the DateTime.Kind property introduced in .NET 2.0. By default this is set to DateTimeKind.Unspecified, which is most of the time handled the same as DateTimeKind …
1
vote

Removing one Installer from another installer

AFAIK calling an installer (either to install or uninstall) from another installer is not supported. It was supported in earlier versions of Windows Installer, but is now deprecated, and even then …
1
vote

“Could not load type” in web service converted to VB.NET

In VB.NET, namespace declarations are relative to the default namespace of the project. So if the default namespace for the project is set to X.Y, everithyng between Namespace Z and …
0
votes

.Net 2.0: How to subscribe to a event publisher on a remote computer using transient subscriptions?

As you are talking about COM and remote computers, I suspect you'll have to do some DCOM security configuration. …

1 2 next
15 30 50 per page