I don't have any coding experience. Apologies in advance if question is silly.
I'd like to understand how to "discover" a string that I can add to an existing internal-domain-url (obviously I'm not an admin of that domain) to use its search function. Or to automate that search a little.
Example: Domain: internaldomain.intranet.home An idea of string: /?search=VALUE
Search "button" on the existing domain when used does not change the URL at all. I'm clueless as to what the search string could be. But the search function works as intended of course.
I tried using "Inspect Element" and "Network" tab in my browser to find out but couldn't figure it out. It looks like it's invoking a java script.
<td>
Search
<select name="ctl00$ContentPlaceHolder1$ddlSearchColumn" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$ddlSearchColumn\',\'\')', 0)" id="ctl00_ContentPlaceHolder1_ddlSearchColumn">
<option selected="selected" value="IP">IP</option>
<option value="Subnet, Gateway">Subnet, Gateway</option>
<option value="Fullname">Fullname</option>
</select>
<input name="ctl00$ContentPlaceHolder1$TextBoxSearchValue" id="ctl00_ContentPlaceHolder1_TextBoxSearchValue" style="width:200px;" autocomplete="off" type="text">
<ul id="ctl00_ContentPlaceHolder1_AutoCompleteExtenderCWID_completionListElem" style="text-align: left; visibility: hidden; cursor: default; list-style: outside none none; padding: 0px; border: 1px solid buttonshadow; background-color: window; color: windowtext; display: none; position: absolute;"></ul>
<input name="ctl00$ContentPlaceHolder1$btnShowAccountStatus" value="Start" id="ctl00_ContentPlaceHolder1_btnShowAccountStatus" style="width:140px;margin-left: 40px;" type="submit">
</td>
I've inspected the "search" function code and pasted it above. I'm hoping this will help you to understand my issue. I want to be able to visit url that will allow me to automatically search for "VALUE", instead of going to the website, typing "VALUE" manually into search field and clicking search button.
Something like: internaldomain.intranet.home/?search=VALUE
Many Thanks, Ponyrius