A
abcd
I am novice asp.net programmer.
I have xyz.js file which has resuable functions. I have asp.net form
abcd.aspx and the code behind file abcd.aspx.cs, I want to put a 'Help'
button when clicked it will open a window and open the required file for
me.
I am have issues
1.I tried calling my xyz.js function i.e. ShowHelp in the call like in my
aspx page
<input type="button" OnClick="ShowHelp('/help/help.htm');" value="Help"
name="Help">
When I do this it does not open help.htm, I guess it needs full url path. I
have full url as a server side ViewState variable, how can I put that in the
above syntax so that the url will be complete
2. If I want to use asp server side control then how can I call ShowHelp
from server side call...
thanks
I have xyz.js file which has resuable functions. I have asp.net form
abcd.aspx and the code behind file abcd.aspx.cs, I want to put a 'Help'
button when clicked it will open a window and open the required file for
me.
I am have issues
1.I tried calling my xyz.js function i.e. ShowHelp in the call like in my
aspx page
<input type="button" OnClick="ShowHelp('/help/help.htm');" value="Help"
name="Help">
When I do this it does not open help.htm, I guess it needs full url path. I
have full url as a server side ViewState variable, how can I put that in the
above syntax so that the url will be complete
2. If I want to use asp server side control then how can I call ShowHelp
from server side call...
thanks