The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
43 views

How to force execution of value assignment in blocks of type <%=value%>

is there a directive or a instruction to force the execution of the blocks of type <%=value%> in webpages?, because i have a web project in which i have a block of that type and it just evaluates ...
0
votes
1answer
187 views

How to Include a HTML file outside my web-application into a JSP inside my application

I have a HTML Page at a Web Publisher whose content i want to load in a JSP inside my web application. I have tried JSP:Include action and Include directive but both of them seem to take only relative ...
3
votes
1answer
2k views

Converting CodeFile to CodeBehind

So I seem to have some difficulties with making my CodeFile reference into CodeBehind. Before you ask, I do not have Visual Studio and I'm not on Windows. The code is being hosted on an IIS server ...
-1
votes
2answers
227 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 ...
1
vote
1answer
152 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
629 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
68 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 ...
2
votes
3answers
361 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 ...
17
votes
2answers
7k 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
0
votes
2answers
327 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 ...
3
votes
2answers
1k 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 ...
0
votes
2answers
555 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
332 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
218 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 ...
4
votes
1answer
7k 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 ...
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 ...