python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How do I set language once the client application signed in with identity server
I have a setup where a client application signs in using OWIN middleware / oauth with a central identity server. The return request from the identity server also includes a language claim for the curr...
Cliffi
Votes: 0
Answers: 0
How to Access Public Properties from Global.asax
I am new to working with the global.asax file. I have an application where I need to set some application wide variables the values for which as sourced from the web.config file. The global asax see...
Paul Johnson
Votes: 0
Answers: 1
asp net global asax rewrite infinite loop
Here my Global.asax
public void GetRewrites()
{
if (rewrites == null)
rewrites = Rewrite.getRules(); //reads from the DB
}
protected void Application_Start(object sender, E...

Martina
Votes: 0
Answers: 1