Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
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