Type cstype = this.GetType();
ClientScriptManager cs = Page.ClientScript; ///Broken line
if (!cs.IsStartupScriptRegistered(cstype, "loadvideo"))
{
StringBuilder cstext3 = new StringBuilder();
cstext3.Append("jwplayer(\"vidplayer\").setup({");
cstext3.Append("flashplayer:\"./players/player.swf\",");
cstext3.Append("file: \"");
cstext3.Append("./video.mp4");
cstext3.Append("\",height: 270,");
cstext3.Append("width: 400");
cstext3.Append("});");
cs.RegisterStartupScript(cstype, "loadvideo", cstext3.ToString(), true);
СуществуетОбъект необходим для не-статического метода или поля ошибки
«Ссылка на объект необходим для не-статического поля, метода или собственность«System.Web. UI.Page.ClientScript.get '"
ошибка в указанной строке. Как я могу исправить?
http://stackoverflow.com/questions/8861196/asp-net-how-to-call-clientscript -from-public-static-method – tharif
http://stackoverflow.com/questions/4717498/an-object-reference-is-required-for-the-non-static-field-method-or-property – codeator
Вы пытаетесь встроить плеер в телефонное приложение Windows или что-то еще? – emaxsaun