All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Hi,
i got the following hidden input field
<
input
id
=
"
regit"
type
"hidden"
>
I got two issues here
1. Get the value of regit
2. Use the value to Navigate To a url
Any ideas?
Zaki.
Here is what i tried so far, but it aint working yet
var hiddenFieldControl =Pages.MyPageName.Get<
HtmlInputHidden
>("id=Global_RegID");
var fieldValue = hiddenFieldControl.Value;
ActiveBrowser.NavigateTo("http://SecretIP/folder/start.html#/introduction?regId=" + fieldValue , true);
And after hell lots of debugging,
The above does not work as i wait for an ajax call to update the hidden value and that is were i am stuck.
HtmlInputHidden input = ActiveBrowser.Find.ById<HtmlInputHidden>(
"regit"
);
ActiveBrowser.NavigateTo(
"http://SecretIP/folder/start.html#/introduction?regId="
+ input.Value.ToString(),
true