Click here to Skip to main content
15,922,427 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: First date of the week day should be display depending on the selection of week no . from the textbox Pin
Abhijit Jana24-Oct-07 22:42
professionalAbhijit Jana24-Oct-07 22:42 
Questionhelp me in Popup Page Location Pin
sirisha guttikonda24-Oct-07 21:05
sirisha guttikonda24-Oct-07 21:05 
AnswerRe: help me in Popup Page Location Pin
Christian Graus24-Oct-07 21:10
protectorChristian Graus24-Oct-07 21:10 
AnswerRe: help me in Popup Page Location Pin
Tirthadip24-Oct-07 21:23
Tirthadip24-Oct-07 21:23 
use top and left parameter of window.open function for positioning the pop-up.like

TheNewWin = window.open('','name','height=255,width=250,<br />
 toolbar=no,directories=no,status=no,menubar=no,<br />
 scrollbars=no,resizable=no,top=20,left=20');


This only sets the position the first time the window is opened though. If we are intending to reuse the same window for multiple popups then we will want to relocate the window to the desired location immediately after the window opens instead.

use MoveTo function for that.

TheNewWin = window.open('','name','height=255,width=250,<br />
 toolbar=no,directories=no,status=no,menubar=no,<br />
 scrollbars=no,resizable=no');<br />
TheNewWin.moveTo(50,50); 


Tirtha

Do not go where the path may lead, go instead where there is no path and leave a trail.

Author: Ralph Waldo Emerson (1803-82), American writer, philosopher, poet, essayist

AnswerRe: help me in Popup Page Location Pin
squattyarun24-Oct-07 21:29
squattyarun24-Oct-07 21:29 
Questionproblem with db connection Pin
accessred24-Oct-07 20:42
accessred24-Oct-07 20:42 
AnswerRe: problem with db connection Pin
Sandeep Kumar24-Oct-07 20:57
Sandeep Kumar24-Oct-07 20:57 
GeneralRe: problem with db connection Pin
accessred24-Oct-07 21:21
accessred24-Oct-07 21:21 
Questiontellyourfriend in .net Pin
saravanan0524-Oct-07 20:41
saravanan0524-Oct-07 20:41 
AnswerRe: tellyourfriend in .net Pin
Christian Graus24-Oct-07 20:44
protectorChristian Graus24-Oct-07 20:44 
QuestionPopup page Locatopn Pin
sirisha guttikonda24-Oct-07 20:01
sirisha guttikonda24-Oct-07 20:01 
AnswerRe: Popup page Locatopn Pin
Sandeep Kumar24-Oct-07 21:06
Sandeep Kumar24-Oct-07 21:06 
QuestionCan anyone explain in detail about DB LOCKING Pin
Sathiyaraj Ganesan24-Oct-07 19:58
Sathiyaraj Ganesan24-Oct-07 19:58 
AnswerRe: Can anyone explain in detail about DB LOCKING Pin
xenonysf24-Oct-07 21:08
xenonysf24-Oct-07 21:08 
GeneralRe: Can anyone explain in detail about DB LOCKING Pin
Christian Graus24-Oct-07 21:12
protectorChristian Graus24-Oct-07 21:12 
GeneralRe: Can anyone explain in detail about DB LOCKING Pin
xenonysf24-Oct-07 21:19
xenonysf24-Oct-07 21:19 
QuestionMail server in asp.net with C# Pin
shabi uz zaman24-Oct-07 19:48
shabi uz zaman24-Oct-07 19:48 
AnswerRe: Mail server in asp.net with C# Pin
Christian Graus24-Oct-07 20:53
protectorChristian Graus24-Oct-07 20:53 
GeneralRe: Mail server in asp.net with C# Pin
shabi uz zaman24-Oct-07 21:20
shabi uz zaman24-Oct-07 21:20 
QuestionProblem with two dropdownlist........ Pin
Deepak Nigam24-Oct-07 19:37
Deepak Nigam24-Oct-07 19:37 
AnswerRe: Problem with two dropdownlist........ Pin
Imran Khan Pathan24-Oct-07 19:45
Imran Khan Pathan24-Oct-07 19:45 
QuestionInvalid postback or callback argument. Pin
Imran Khan Pathan24-Oct-07 19:36
Imran Khan Pathan24-Oct-07 19:36 
QuestionDrag and drop images very urgent Pin
P.P.K.Reddy24-Oct-07 19:14
P.P.K.Reddy24-Oct-07 19:14 
AnswerRe: Drag and drop images very urgent Pin
Christian Graus24-Oct-07 20:46
protectorChristian Graus24-Oct-07 20:46 
GeneralRe: Drag and drop images very urgent Pin
Paul Conrad23-Dec-07 15:03
professionalPaul Conrad23-Dec-07 15:03 

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.