I assume you are building an application with either MDS Studio or the Visual Studio Plugin...
You can pass them like the following:
Code:
var1 = Form1.textbox1.value
var2 = From1.textbox2.value
system.loadurl("http:\\localhost\myaspx?parameter1=" + var1 + "¶meter2=" + var2); You might have to excape the "\" characters with a "\\".. Not sure if JavaScript will see them as an escape character or not... best way to check is to do a Dialog.alert(yourtexthere); to see what it thinks the url is.