Click here to Skip to main content
15,949,686 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to Use COM Dll in ASP.NET Pin
Christian Graus7-Apr-08 20:26
protectorChristian Graus7-Apr-08 20:26 
GeneralFinding list of controls from another aspx page within a project Pin
Syed Kamran ul Haq7-Apr-08 20:00
Syed Kamran ul Haq7-Apr-08 20:00 
GeneralRe: Finding list of controls from another aspx page within a project Pin
Christian Graus7-Apr-08 20:27
protectorChristian Graus7-Apr-08 20:27 
GeneralRe: Finding list of controls from another aspx page within a project Pin
gspiteri7-Apr-08 23:11
gspiteri7-Apr-08 23:11 
GeneralRe: Finding list of controls from another aspx page within a project Pin
Christian Graus7-Apr-08 23:13
protectorChristian Graus7-Apr-08 23:13 
GeneralRe: Finding list of controls from another aspx page within a project Pin
Syed Kamran ul Haq8-Apr-08 0:06
Syed Kamran ul Haq8-Apr-08 0:06 
GeneralRe: Finding list of controls from another aspx page within a project Pin
Christian Graus8-Apr-08 0:08
protectorChristian Graus8-Apr-08 0:08 
QuestionHow to close a webform while opening another webform?? Pin
biswa477-Apr-08 19:59
biswa477-Apr-08 19:59 
i am devlopping a asp.net application in (VS 2005).
wheren in my default.aspx page there is a provision for login and that
login control is resides with in "frame". Now when i login sucessfully it
redirects to a new default2.aspx page. My problem is that after login
2pages are there in the window . i want to close the "default1.aspx " when
default2.aspx is loaded in the window.
how can i do in the server side.


to open a new defaul2.aspx page in a new window i have written the follwing code.
<br />
System.Text.StringBuilder sb = new System.Text.StringBuilder();<br />
                sb.Append("<script language='javascript'>");<br />
                sb.Append("window.open('Boundry/ScrUserHome.aspx', 'PopUp',");<br />
                sb.Append("'top=0, left=0, width='+screen.availwidth+', height='+screen.availheight+', menubar=no,scrollbar=yes,toolbar=no,resizable=yes,addressbar=no');<");<br />
                sb.Append("/script>");<br />
                 Type t = this.GetType();<br />
<br />
                if (!ClientScript.IsClientScriptBlockRegistered(t, "PopupScript"))<br />
                    ClientScript.RegisterClientScriptBlock(t, "PopupScript", sb.ToString());<br />
<br />

now how to close default1.aspx page in the server side????
GeneralRe: How to close a webform while opening another webform?? Pin
Christian Graus7-Apr-08 20:28
protectorChristian Graus7-Apr-08 20:28 
GeneralRe: How to close a webform while opening another webform?? Pin
Ashish Sehajpal7-Apr-08 21:05
Ashish Sehajpal7-Apr-08 21:05 
Questionhow an app.config connection string tag or we.config file connection string tag can be locked. Pin
lakshmichawala7-Apr-08 19:56
lakshmichawala7-Apr-08 19:56 
AnswerRe: how an app.config connection string tag or we.config file connection string tag can be locked. Pin
N a v a n e e t h7-Apr-08 20:06
N a v a n e e t h7-Apr-08 20:06 
GeneralRe: how an app.config connection string tag or we.config file connection string tag can be locked. Pin
lakshmichawala7-Apr-08 20:12
lakshmichawala7-Apr-08 20:12 
GeneralRe: how an app.config connection string tag or we.config file connection string tag can be locked. Pin
Christian Graus7-Apr-08 20:29
protectorChristian Graus7-Apr-08 20:29 
GeneralIssue with Validator control Pin
Vipul Mehta7-Apr-08 19:56
Vipul Mehta7-Apr-08 19:56 
GeneralRe: Issue with Validator control Pin
Christian Graus7-Apr-08 20:30
protectorChristian Graus7-Apr-08 20:30 
GeneralRe: Issue with Validator control Pin
Vipul Mehta7-Apr-08 21:08
Vipul Mehta7-Apr-08 21:08 
GeneralRe: Issue with Validator control Pin
Christian Graus7-Apr-08 21:15
protectorChristian Graus7-Apr-08 21:15 
GeneralRe: Issue with Validator control Pin
Vipul Mehta7-Apr-08 21:31
Vipul Mehta7-Apr-08 21:31 
GeneralRe: Issue with Validator control Pin
Christian Graus7-Apr-08 21:34
protectorChristian Graus7-Apr-08 21:34 
GeneralRe: Issue with Validator control Pin
eyeseetee7-Apr-08 21:36
eyeseetee7-Apr-08 21:36 
GeneralRe: Issue with Validator control Pin
Vipul Mehta7-Apr-08 21:56
Vipul Mehta7-Apr-08 21:56 
GeneralRe: Issue with Validator control Pin
eyeseetee7-Apr-08 22:00
eyeseetee7-Apr-08 22:00 
GeneralRe: Issue with Validator control Pin
Vipul Mehta7-Apr-08 22:03
Vipul Mehta7-Apr-08 22:03 
QuestionHow to get Virtual Path of Web Service [modified] Pin
samrat.net7-Apr-08 18:19
samrat.net7-Apr-08 18:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.