Hi guys,
Has anyone encountered and solved this problem. BTW. i'm migrating an old asp.net 2.0 website to vs2010/ .net4.0. Whenever I open a window without parameters they open fine. such as openGoogleWin(). but when i use a function with parameters such as openYahooWin('www.yahoo.com') i get an 'undefined' is null or not an object error.
my javascript code is as follows:
function openYahooWin(url)
{
var oWindow = window.radopen ("", null);
oWindow.SetUrl(url);
oWindow.SetSize (400, 300);
oWindow.SetTitle ("yahoo");
oWindow.SetModal("True");
//oWindow.VisibleStatusBar = false;
}