Passing variables
Hi i have a folowing problem
I have a textbox and a link.
When i click a link i would like to pass and value of the txtDeadLine, but i do not know sintax.
Here is what i have:
<asp:TextBox id="txtDeadLine" runat="server" Width="100px" CssClass="DDiText"></asp:TextBox>
<A onclick="window.open('Kalendar.aspx?textbox=txtDea dLine','cal','width=250,height=300,left=270,top=18 0')"
href="javascript:;"><IMG src="Slike\cal.gif" border="0"></A>
I know that what i need is something like this.
<A onclick="window.open('Kalendar.aspx?textbox=txtDea dLine&Value='Here i do not know, ...
Thanks
Alexandar
|