Click here to Skip to main content
15,908,901 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: selecting a row in datagrid and swapping Pin
ptvce9-Oct-06 22:39
ptvce9-Oct-06 22:39 
GeneralRe: selecting a row in datagrid and swapping Pin
Krishlibran10-Oct-06 0:50
Krishlibran10-Oct-06 0:50 
GeneralRe: selecting a row in datagrid and swapping Pin
ptvce10-Oct-06 19:22
ptvce10-Oct-06 19:22 
GeneralRe: selecting a row in datagrid and swapping Pin
ptvce10-Oct-06 19:25
ptvce10-Oct-06 19:25 
GeneralRe: selecting a row in datagrid and swapping Pin
Krishlibran10-Oct-06 19:45
Krishlibran10-Oct-06 19:45 
QuestionMay i get the product key Num of VS 2005 Pin
ravikiranreddydharmannagari9-Oct-06 20:27
ravikiranreddydharmannagari9-Oct-06 20:27 
AnswerRe: May i get the product key Num of VS 2005 Pin
RichardGrimmer10-Oct-06 5:29
RichardGrimmer10-Oct-06 5:29 
Questionpopup window unable to write value in the parent window. Pin
ram19749-Oct-06 19:53
ram19749-Oct-06 19:53 
Hi,

I am using a simple popup application in which I popup a window and the window will write the value into the parent window text box.

child.aspx

function Fillvalue()
{
var txtDefault = document.getElementById('txtChild');
window.opener.document.form1.txtDefault.value = txtDefault.value;
window.close();
}

default.aspx


function OpenPopup(parentID)
{
var winHeight = 600;
var winWidth = 830;
var url = 'frmChild.aspx?';
options = 'menubar=0,resizable=1,status=0,scrollbars=1,height=' + winHeight + ',width= ' + winWidth +
',left=' + ((screen.width-winWidth)/2) + ',top=' + ((screen.height-winHeight)/2);
window.open( url, '', options );
}



This is working fine and returning me the desired value. which I entered in the child(popup) window.

but, when I am using
window.opener.document.form1.txtDefault.value = txtDefault.value;
in my other application the above is not working. I am very much confussed, what might be wrong, any solution please....

Confused | :confused: Confused | :confused:


Ram
QuestionRetrival of stored data from a table using asp.net 2.0 Pin
brardavi9-Oct-06 19:51
brardavi9-Oct-06 19:51 
AnswerRe: Retrival of stored data from a table using asp.net 2.0 Pin
Sathesh Sakthivel9-Oct-06 20:07
Sathesh Sakthivel9-Oct-06 20:07 
AnswerRe: Retrival of stored data from a table using asp.net 2.0 Pin
brardavi9-Oct-06 20:28
brardavi9-Oct-06 20:28 
GeneralRe: Retrival of stored data from a table using asp.net 2.0 Pin
Sathesh Sakthivel9-Oct-06 20:45
Sathesh Sakthivel9-Oct-06 20:45 
GeneralRe: Retrival of stored data from a table using asp.net 2.0 Pin
Jay_se9-Oct-06 21:42
Jay_se9-Oct-06 21:42 
QuestionServer.Transfer vs Response.Redirect Pin
psamy9-Oct-06 18:59
psamy9-Oct-06 18:59 
AnswerRe: Server.Transfer vs Response.Redirect Pin
Sathesh Sakthivel9-Oct-06 19:11
Sathesh Sakthivel9-Oct-06 19:11 
AnswerRe: Server.Transfer vs Response.Redirect Pin
Jay_se9-Oct-06 19:13
Jay_se9-Oct-06 19:13 
QuestionApplication.DoEvents in ASP.Net? Pin
Mei Yoong9-Oct-06 18:37
Mei Yoong9-Oct-06 18:37 
AnswerRe: Application.DoEvents in ASP.Net? Pin
safat9-Oct-06 20:12
safat9-Oct-06 20:12 
AnswerRe: Application.DoEvents in ASP.Net? Pin
Mei Yoong9-Oct-06 21:15
Mei Yoong9-Oct-06 21:15 
GeneralRe: Application.DoEvents in ASP.Net? Pin
safat10-Oct-06 1:48
safat10-Oct-06 1:48 
GeneralRe: Application.DoEvents in ASP.Net? Pin
Mei Yoong17-Oct-06 16:41
Mei Yoong17-Oct-06 16:41 
QuestionDelete File from Server??? Pin
code-frog9-Oct-06 16:34
professionalcode-frog9-Oct-06 16:34 
AnswerRe: Delete File from Server??? Pin
Steve Echols9-Oct-06 19:34
Steve Echols9-Oct-06 19:34 
AnswerRe: Delete File from Server??? Pin
Sam_IN9-Oct-06 21:59
Sam_IN9-Oct-06 21:59 
QuestionMoving a masterpage contentplaceholder around Pin
ThePlagueIsBack9-Oct-06 13:14
ThePlagueIsBack9-Oct-06 13:14 

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.