Accessing embedded resource in subfolder?

G

Guest

for some reason i can't access a resource (.js) if the control files and the
resource are in a subfolder off the project root or just the resource is in a
subfolder.

the code is as follows ( this is an example with the resourse in a
sub-folder called Resources):

private void RegisterScript(Control targetControl) {
String pageScriptName = "Cbs.Ui.Controls.Resources.ControlScript";
if ( !this.Page.IsClientScriptBlockRegistered(pageScriptName) ) {
using (System.IO.StreamReader reader = new
System.IO.StreamReader(typeof(Cbs.Ui.Controls.FirstFocus).Assembly.GetManifestResourceStream(typeof(Cbs.Ui.Controls.FirstFocus),
"Cbs.Ui.Controls.Resources.ControlScript.js"))) {
String script = "<script language='javascript' type='text/javascript'
\r\n<!--\r\n" + reader.ReadToEnd() + "\r\n//-->\r\n</script>";
this.Page.RegisterClientScriptBlock(pageScriptName, script);
}
}

the code failes on the using line with the error:
Value cannot be null. Parameter name: stream

Everything works fine if its all in the root and refer to the script as just
"ControlScript.js"

I understand that the fully qualified name of a resource in a sub-folder
should be <namespace>.<subfolder>.<resourcename>.<extension>.

Am i missing something?

Thanks,
Christian
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top