hi everyone, i'm a noobie in .net and i'm workin' on a project right now. i just graduated from my degree and just started working...
well here it is, how are you going to do this?
picture this out, i have a page (aspx) wherein there are buttons and multiline textboxes or textareas, now, when i click on a button, i call the onclick event to put up a javascript popup to bring out another page associated with the calling page..
i used this code: window.open or popitup
this.btnPatient Image.Attribute s.Add("onclick" , String.Format(" javascript:wind ow.open('NewPIM G.aspx?PatientI d={0}'); return false;", patientId));
on the pop up, i have to retrieve the values of the fields and return it to the page who called it with captions on from what page did it come from.. how will i do that?
i also tried using redirection instead of pop-ups, i managed to throw the fields i need to the querystring successfully but the problem is the fields i typed in the parent page somehow loses the data... shush...
please help. i'd really appreciate it.. thank you
well here it is, how are you going to do this?
picture this out, i have a page (aspx) wherein there are buttons and multiline textboxes or textareas, now, when i click on a button, i call the onclick event to put up a javascript popup to bring out another page associated with the calling page..
i used this code: window.open or popitup
this.btnPatient Image.Attribute s.Add("onclick" , String.Format(" javascript:wind ow.open('NewPIM G.aspx?PatientI d={0}'); return false;", patientId));
on the pop up, i have to retrieve the values of the fields and return it to the page who called it with captions on from what page did it come from.. how will i do that?
i also tried using redirection instead of pop-ups, i managed to throw the fields i need to the querystring successfully but the problem is the fields i typed in the parent page somehow loses the data... shush...
please help. i'd really appreciate it.. thank you
Comment