[ic] Tags in item text

Dennis Chen interchange-users@icdevgroup.org
Mon Nov 25 12:08:01 2002


> I'd like to put some links into the text for some of the items.
> 
> But if I just enter a <a href=... html tag, I loose the 
> session information 
> that IC adds automatically.
> 
> Any way to put a [page ...] tag into item texts?
> 

Use 
	<a href="[area yourpage]">hello world</a>

if your session is logged in, you can add additional stuff
	<a href="[area yourpage]&name=Jack">hello world</a>  
otherwise do
	<a href="[area yourpage]?name=Jack">hello world</a>  

Dennis