Posted on: 12/8/2014 2:24:05 PM | Views : 457

I have an imagebutton on a page and a custom user control, also an imagebutton, that opens a popup window - both have different ID.  The image button on the page works fine (changes text in text box) and so does the user control HOWEVER - as soon as the usercontrol imagebutton is pressed, it changes the function of the imagebutton on the page to do the same thing!!  Any ideas?!
Code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %> <%@ Register TagPrefix="wilts" TagName="TestPopUp" Src="testpopup.ascx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml&qu ...

Go to the complete details ...