Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Page Properties
hiddentrue
idKB


ThemeLinking
Type

iShare

Available from 


iShare allows you to link to different My House tabs via special names or via different parameters as well as linking via an Address Search text input box. 

Table of Contents

Link via Address Search

iShare allows you to link from a website home page via an address search for a property e.g.

...

Code Block
titleExample Address Search code
<form action="http://isharemaps.surreyheath.gov.uk/mySurreyHeath.aspx" method="get">
	<p>
		<label for="atTxtStreet">
			<span>Enter your street or postcode to find your Recycling &amp; Refuse collection day information, local facilities &amp; amenities, your local Councillors and interactive online maps: </span>
		</label>
		<br />
		<br />
		<input type="text" id="atTxtStreet" name="atTxtStreet" value="Enter Street or Postcode" onfocus="javascript: this.value=''" />
		<input type="submit" value="Search" />
	</p>
</form>

Link via special Tab Names

You can link to the My Maps page via ?tab=maps

...

Code Block
titleExample Tab Name My Alerts code
<a href="atMyCouncil.aspx?tab=alerts">Goto to alerts (?tab=alerts)</a>

Link via a Tab Index Number

You can pass an integer for the tab to show (for the first or if you have others)

...

Code Block
titleExample Tab Index Number code
<a href="atMyCouncil.aspx?tab=0">Goto first tab - My House (tab=0)</a>
<a href="atMyCouncil.aspx?tab=1">Goto second tab - My Nearest (tab=1)</a>
<a href="atMyCouncil.aspx?tab=-1">If negative will ignore (tab=-1)</a>
<a href="atMyCouncil.aspx?tab=100">if too many will ignore(tab=100)</a>

Link via a UPRN

It is also possible to link to a specific property through the UPRN as follows:

...