this.Page.ClientScript.RegisterClientScriptInclude("utility.popupUrl(CaptchaLogin.aspx)","");
|
|
closed as not a real question by Mac, Dor Cohen, Midhun MP, 一二三, Dominik Honnef Nov 18 '12 at 12:15
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Nope, that's not right. When you register a client script include you're supposed to supply a url to a javascript file that contains the code you want to execute. That will render as What you want to do is EDIT With regards to your comment, I don't know exactly what you wanted the script to do, but it looks like you tried to register a script block and a script include, which a) won't go, and b) wasn't part of your original question. I'll try to reply step by step on things you need to change: The first parameter, The second parameter is not supposed to contain any actual script; it is just a key to identify the script. You want to be able to identify the script, so that you can, say, check if it is registered, as in the example below. You can choose pretty much whatever to be your key, just as you choose, say, variable names. The third parameter is your actual script. If you pass the fourth parameter as
Now, to include the script file
I should add that I'm not sure whether you can use the tilde, |
|||||||||||
|