Click here to Skip to main content
15,914,905 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Use of Mailto: For Feedback Pin
Vasudevan Deepak Kumar28-Jul-05 3:17
Vasudevan Deepak Kumar28-Jul-05 3:17 
GeneralError in VBScript Pin
Spaz8027-Jul-05 22:38
Spaz8027-Jul-05 22:38 
GeneralRe: Error in VBScript Pin
Vasudevan Deepak Kumar27-Jul-05 22:52
Vasudevan Deepak Kumar27-Jul-05 22:52 
GeneralMicrosoft bug solution didn't work Pin
Plunging_Falcon27-Jul-05 21:12
Plunging_Falcon27-Jul-05 21:12 
GeneralRe: Microsoft bug solution didn't work Pin
Vasudevan Deepak Kumar27-Jul-05 22:02
Vasudevan Deepak Kumar27-Jul-05 22:02 
GeneralRe: Microsoft bug solution didn't work Pin
Plunging_Falcon27-Jul-05 22:25
Plunging_Falcon27-Jul-05 22:25 
GeneralPOPULATE AN ARRAY Pin
evlxtc27-Jul-05 20:51
evlxtc27-Jul-05 20:51 
GeneralRe: POPULATE AN ARRAY Pin
Guffa28-Jul-05 2:17
Guffa28-Jul-05 2:17 
You can use javascript to send a string or array to the other frame, and in a function in that frame handle the collection of items.

Example:

Script to send a string of id:s to the other frame:

top.otherFrame.addItems('4,7,18,42');

Script in the other frame that adds the id:s to a string:

var items = '';<br />
<br />
function addItems(id) {<br />
items += (items.length?',':'') + id;<br />
}


This is just a method for sending the data. If you want to display anything in the other frame, you have to add code for that. Perhaps you need to reload that page in order to get more information about the items than just the id.

---
b { font-weight: normal; }

GeneralRe: POPULATE AN ARRAY Pin
evlxtc28-Jul-05 3:24
evlxtc28-Jul-05 3:24 
GeneralRe: POPULATE AN ARRAY Pin
Guffa28-Jul-05 3:53
Guffa28-Jul-05 3:53 
GeneralRe: POPULATE AN ARRAY Pin
evlxtc28-Jul-05 4:10
evlxtc28-Jul-05 4:10 
GeneralRe: POPULATE AN ARRAY Pin
Guffa28-Jul-05 5:12
Guffa28-Jul-05 5:12 
GeneralRe: POPULATE AN ARRAY Pin
evlxtc28-Jul-05 4:12
evlxtc28-Jul-05 4:12 
GeneralRe: POPULATE AN ARRAY Pin
Guffa28-Jul-05 5:13
Guffa28-Jul-05 5:13 
GeneralRe: POPULATE AN ARRAY Pin
evlxtc28-Jul-05 20:28
evlxtc28-Jul-05 20:28 
GeneralRe: POPULATE AN ARRAY Pin
Guffa29-Jul-05 2:23
Guffa29-Jul-05 2:23 
GeneralDependency Walker Pin
Vasudevan Deepak Kumar27-Jul-05 20:42
Vasudevan Deepak Kumar27-Jul-05 20:42 
GeneralSetup and Deployment -- CAB files Pin
Vasudevan Deepak Kumar27-Jul-05 20:30
Vasudevan Deepak Kumar27-Jul-05 20:30 
GeneralNT Authentication Methods Pin
halbichmi27-Jul-05 10:48
halbichmi27-Jul-05 10:48 
GeneralRe: NT Authentication Methods Pin
Vasudevan Deepak Kumar27-Jul-05 22:04
Vasudevan Deepak Kumar27-Jul-05 22:04 
Generaldocument.formname.elements Pin
mtone27-Jul-05 8:49
mtone27-Jul-05 8:49 
GeneralASP.NET application deployment Pin
azam31627-Jul-05 5:47
azam31627-Jul-05 5:47 
GeneralRe: ASP.NET application deployment Pin
Christian Graus27-Jul-05 16:04
protectorChristian Graus27-Jul-05 16:04 
GeneralRe: ASP.NET application deployment Pin
Vasudevan Deepak Kumar27-Jul-05 17:08
Vasudevan Deepak Kumar27-Jul-05 17:08 
GeneralRe: ASP.NET application deployment Pin
minhpc_bk27-Jul-05 17:13
minhpc_bk27-Jul-05 17:13 

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.