Using Application state variable value in Web form
|
ASP.NET 2.0 BasicsIf you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Using Application state variable value in Web form
I am using Application state variable, which used in web form's HTML page's <Title> to display common Application name. But it returns empty string the code is as below. I am using VS .Net 2003
In Global.asax's Application_start event
Application("appname")="Inventory Management System for XYZ Pvt Ltd."
In Web Form's HTML Title tag,
<Title><%# Application("appname) %>-Invoice</Title>
When I run Application it show me only "-Invoice" instead of "Inventory Management System for XYZ Pvt Ltd.-Invoice"
can you help me how to display the Application and company name in Window's title bar.
I suspect the problem is that you are using data binding syntax, but the page isn't executing it's data binding method. Try using the standard "Response.Write" shorthand: