Tagged Questions
The compilationmode tag has no wiki summary.
2
votes
3answers
649 views
ASP.NET compilationMode Auto vs Never
Let's assume my ASPX page has no inline C# code blocks.
So, I can safely set
<pages compilationMode="Never" />
...in my web.config file and not worry about compilation errors.
...
1
vote
3answers
408 views
ASP.NET ExpressionBuilder syntax - output AppSetting within img tag
I would like to use ASP.NET's ExpressionBuilder syntax to dynamically retrieve domain of static content from an AppSetting.
I am using the following syntax, which does not work:
<img ...
1
vote
1answer
253 views
ASP.NET nested masters pages with CompilationMode=“Never”, a recepie for disaster? Bug in ASP.NET?
While working on a quite big web application project, I decided that it could gain a little bit of fresh air by marking some of the pages and controls with the CompilationMode="Never" @Page attribute. ...
1
vote
1answer
108 views
CompilationMode=Never & SessionState
It seems that CompilationMode=Never doesn't permit Sessions to be properly wired.
It first complains that the EnbaleSessionState directive is not allowed on this page.
Explicitly assigning the ...
1
vote
2answers
315 views
How to highlight source in Emacs compilation-mode when compilation error occurs
I read the documentation about compilation-mode but I didn't find any technique to hightlight source code where a compilation error occurs.
For example change the background color of the source code ...