ASp.NET 4.0 VS 2010 C#
I am batteling with a simple asp web form.
the ASPX
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="default.aspx.cs" Inherits="my1._default" %>
<%@ MasterType virtualpath="~/Site.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<asp:ImageButton ID="Image1" runat="server" ImageUrl="~/Images/my1.jpg" AlternateText="Loading" OnClick="my_func" />
</asp:Content>
The CS :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using MYcustom.Maps;
using MYcustom.Mods;
namesp ...
Go to the complete details ...