Click here to Skip to main content
15,892,797 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have called a Function GetPhotos() from Designer Page (source). Getphotos() is in Code-behind Page.

It runs well when I build the application but when I publish the same application using "fixedName and single page Assemblies" option Enable, it returns an error.

Compiler Error Message: CS0103: The name 'GetPhotos' does not exist in the current context.


What should I do?

Code in Design page :
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">


<asp:Panel ID="pn1" runat="server" GroupingText="Facility's">

<table width="100%">
<tr>
  <td style="text-align: removed">
     <asp:Label ID="Label2" runat="server" Height="100%" 
          style="font-size: 21pt; font-weight: 700; color: #996633" Width="100%">     
  </td>
</tr>
<tr><td style="text-align: removed"><asp:Label ID="Label3" runat="server" 
        style="text-align: justify"></td></tr>
<tr>
  <td>
    <asp:GridView ID="GridView1" runat="server" AllowPaging="True" 
        BackColor="White" BorderColor="#336666" BorderStyle="Double" BorderWidth="3px" 
        CellPadding="4" PageSize="15" Width="100%" 
          onselectedindexchanged="GridView1_SelectedIndexChanged">
        <rowstyle backcolor="White" forecolor="#333333" />
        <footerstyle backcolor="White" forecolor="#333333" />
        <pagerstyle backcolor="#336666" forecolor="White" horizontalalign="Center" />
        <SelectedRowStyle BackColor="#339966" Font-Bold="True" ForeColor="White" />
        <HeaderStyle BackColor="#336666" Font-Bold="True" ForeColor="White" />
    
  <% 
      GetPhotos(Label2.Text);      
    %>
  </td>
</tr>
</table>


Thanks in advance.
Posted
Updated 16-Dec-10 0:28am
v2

1 solution

Function GetPhotos should be public.
 
Share this answer
 
Comments
Ankur\m/ 16-Dec-10 8:13am    
Not necessary in this case. A private member will also be available to the aspx page.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900