I have a bit of a puzzle. I'm using RadWindow to open a window to another site for the purposes of tracking a package (UPS or FEDEX). As a result, the VisibleOnPageLoad parameter is set to false initially, because the URL must be built dynamically based upon the package the user chooses to track (if it CAN be tracked).
Everything works fine up until the point that I actually set TrackWindow.VisibleOnPageLoad = True, at which point the window opens, the URL begins to load, and then the entire PAGE goes to the URL. This, obviously, is not the way it was meant to work, lol. I'm thinking it is just something simple I am overlooking. Hopefully someone can take a look and tell me what's going on, and how to fix it.
Here's the relevant .aspx code;
And here's the vb.net code behind:
Note: I'd prefer NOT to add the window dynamically, unless I absolutely have to.