Tagged Questions
The page-directives tag has no wiki summary.
7
votes
2answers
812 views
ASP.NET @Register vs. @Reference
I'm working with referencing user controls on my ASPX page and I'm wondering what the difference is between these two page directives.
@Reference
@Register
4
votes
1answer
4k views
How to set Async Page Directive Dynamically so Async Methods work
I am writing some Utility code to send off emails Async.
var mailClient = new SmtpClient(smtpHost);
mailClient.SendCompleted += new SendCompletedEventHandler(mailClient_SendCompleted);
using (var ...
3
votes
2answers
235 views
What is a Page Directive in .NET
I'm studying up for a Microsoft Certification exam, and some of the wording for the 'content' in the examn confused me. In the MS exam website, under Developing Web Form Pages, it says in regard to ...
2
votes
3answers
202 views
ASP.NET Directive Convention for Declaring Client-Side Includes
I am loading .aspx and .ascx files as StreamReader.
I want each file to register it's javascript and stylesheet dependencies in some declaration like a <%@ ClientDependency ...
2
votes
2answers
1k views
web-inf and jsp page directives
i have a number of jsp files under web-inf folder. Inside my web.xml i specify an errorppage for 404 amd 403 and java.lang.exception. Do i need to include a page directive for each of my jsp's or will ...
1
vote
1answer
53 views
What's the equivalent of C++'s “#ifdef #endif” macro in JSP?
What's the equivalent of C++'s #ifdef #endif macro in JSP?
Is there such thing in JSP?
I want to conditionally include files in one JSP or another.
Reason for doing that is because I have a nested ...
0
votes
3answers
131 views
Set StyleSheetTheme in @Page directive in ASP.NET
I have a property in asp.net application
ABPS.PRR.WEB.CurrentSession.Theme
and I'm setting it in @Page directive in aspx pages like:
<%@ Page ...
0
votes
1answer
34 views
Is there any performance overhead if I use a lot of <%@ Register directives on markup?
Some of my pages have a lot of <%@ Register directives for controls that are no longer used neither on markup nor dynamically created.
I'm wondering if I would benefit or gain some performance if ...
0
votes
2answers
196 views
Which dll will aspx compiler use when a dll is referenced one but multiple versions exist in bin folder
I have an ASP.NET Web Application which has a reference to 'C:\references\Utils.Varia.dll'. There is another dll referenced which uses the signed version of this dll ...
0
votes
2answers
114 views
Confusing could not load type error
I have looked at the other questions on here and I dont see an answer for what is happening to my web app. My situation is this: The main web application has numerous sub_folders for events. Each of ...
0
votes
1answer
214 views
IVR application on Nortel MPS 500 not working with ASP.NET MVC
We have a web server running IIS 6.0 and ASP.NET MVC, that is serving plain xml. The IVR Browser is not accepting the xml being output by the web server.
The Controller just returns a normal ...
0
votes
1answer
116 views
Asp.net page crashes other asp pages
I have a couple Asp.net pages that use a few database connections - the problem is when these two pages are separately loaded they crash all the other .asp pages but none of the .aspx pages.
I get ...
-1
votes
2answers
44 views
isErrorPage=“false” is ignored by container
Getting to the point, I have .jsp page and error page, well if there is something goes wrong with the first one, the error page should turn up then, now i don't want the first page to redirect to the ...