hii,,,i m using asp.net 2005
i have given login control manually using forms authentication and all..
on proper username and password it opens first.aspx....everything is workin fine.
what i want is tht first.aspx should open in a pop up window with specific height and width.heres the code for login
<script language="C#" runat="server">
void Login_Click(Object sender, EventArgs e) {
// authenticate user: this samples accepts only one user with
// a name of 'admin' and a password of 'password'
if ((TextBox1.Text == "admin") && (TextBox2.Text == "admin"))
{
FormsAuthentication.RedirectFromLoginPage(TextBox1.Text,CheckBox1.Checked);
Response.Redirect("First.aspx");
}
else {
Label1.Text = "Invalid User";
}
}
</script>
any solution,,,,pls respond as soon as possible
thnks in advance:)