Hello,
I am developing a multilanguage web app, using MasterPage and Global.asax file; after adding Global.asax file my ImageButtons from MasterPage, are not displayed anymore in the browser (firefox 27.0.1), instead of them I have "Submit Query" text. As far
as I read, "The Global.asax file itself is configured so that any direct URL request for it is automatically rejected;"
- the path to my images is correct;
- I tried to put value="" attribute to my imagebuttons but still not working;
- if i delete the Global file from my prj, is working fine with images loaded.
Can anyone help me? I google it over and over can not find anyone with same issue. Thank you!
MasterPage code:
<div id="pagination">
<ul>
<li>
<asp:ImageButton ID="ImgBtnReports" runat="server"
Im ...
Go to the complete details ...