Hello hello
Thank you for taking care af my OOP knowledge.
The pratical case is :
a plateform used localy for developpement (
http://localhost/project), and
accedeed remotly by the custumer (
http://www.dummy.com/project). Javascript
is used in the pages, with CSS and Images.
As you know (because you may know a lot of things, included the OOP), there
is some issues regarding the path to access to the CSS and images from the
javascript. In other word, there is a need for absolute url. The global var,
then, is dedicated to set the path dynamically in the url string inside the
CSS and the javascript file according to the access type : localy or
remotely.
As I do not want to build a gas factory to solve this issue that is raised
only during the dev, I just need a simple global var for that, temporary.
So everthing else is superfetatoire my dear.
See you.
Pierre.
"Pierre" <> a écrit dans le message de news:
%...
> Hello,
>
> In an aspx page (mypage.aspx) from a web projet,
> I would like to get the value of a variable of the projet that is declared
> as public in a module.
> The variable can be called from anywhere in the code behind page and in
> the class files, but when I try to call it from an aspx page, it raises an
> error.
>
> <%=myvar%> in mypage.aspx raise an error : the name "myvar" is not
> declared.
>
> I have a workaround, but it does not satisfy me enough :
>
> I create a code behind for the aspx page and I declared a class variable,
> let's say "cls_myvar", with a default value equals to "myvar".
> And now when referencing the "cls_myvar" in the aspx page, there is no
> error and the value is here.
>
> <%=cls_myvar%> is ok.
>
> But I would like to reference to the global var "myvar" in the simpliest
> way, ie whithout having to create a code behind file.
>
> Thanks for any help.
>
> Pierre.
>
>