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
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.
…
0
votes
Using ButtonField or HyperLinkField to write a cookie in ASP.NET
Since you set the DataKeyNames property of the DetailsView control, you can access the ArtID of the displayed item using the DetailsView1.DataKey(0). Alternatively you can use DetailsView1.Selected …
1
vote
Subtext install gives error in Medium trust level.
Trust levels are really just pointers to some security.config files. The dafault trust levels are defined in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config, "Medium" trust pointing …
0
votes
What are the naming guidelines for ASP.NET controls?
We also use number 2, however I'm not totally convinced it is a good approach. It is Hungarian notation from the "bad" kind, meaning that the prefixes signal the type (syntax) and not the purpose ( …
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
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 …
2
votes
ASP.NET Session Scope: where can it be accessed from?
AFAIK the in-process session has an AppDomain scope, so no, two web applications running in the same pool cannot share an in-process session. Actually the name "in-AppDomain" would …
1
vote
FormsAuthentication selective to url
This can be achieved, but you'll have to implement your own IHttpModule for it. Alas FormsAuthenticationModule is sealed, meaning that you would have to start from scratch, but …
0
votes
XMLHTTP POST request and System.Reflection
Judging by the exception message this does not look like an authentication problem to me.
Could it be that the invoked method tries to access the ASP.NET Session? That would explain the exception. …
3
votes
Does RegularExpressionValidator use other flavor than Regex?
The RegularExpressionValidator also supports client-side validation using JavaScript, where the JavaScript Regex engine is used. The difference you see is the difference between the JavaScript and …
2
votes
ASP.NET membership password expiration
You could add an event handler for the HttpApplication.PostAuthenticateRequest event in global.asax and handle the redirection there.
…
1
vote
How to parse a “cut n paste” from Excel.
This looks like a "delimited values" list to me, so basically the same as CSV with TAB as the field delimiter and line break as the row delimiter. You could try it with the …
1
vote
ASP.NET page specific configuration
You can also try it with the <location> tag, however I'm not sure you can use it with < …
