Can we do aspx page like modalpopupextender
i have two aspx pages leke firstpage.aspx and secondpage.aspx. in firstpage there is one button. when i click this button, can i open the second page as modalpopup extender. is it possible or not? i am new in asp.net. please help me
merlishPosted Jan 9, 2012, 11:14 AM
Satyapriya NayakPosted Jan 9, 2012, 1:30 AM
Try this...
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="firstpage.aspx.cs" Inherits="firstpage" %>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="second.aspx.cs" Inherits="second" %>
Thanks
Mukesh KumarPosted Jan 9, 2012, 12:10 AM
void Page_load(object sender, EventArgs e)
{
Button1.Attributes.Add( "onclick", "popWin()" );
}
firstpage.aspx