R
Reader
Принимаю на вход переменные, если не заданы, то хочу прервать работу приложения. Вычитал в справке об HttpApplication.Dispose(), но не знаю как обратиться к ТЕКУЩЕМУ экземпляру. Или может есть более корректный способ прерваться?
[codebox] private string getVariable(string VarName, bool isCritical)
{
string retVal;
retVal = InputPostMethod ? Request.Form.Get(VarName) : Request.QueryString.Get(VarName);
if (retVal == null)
{
if (DebugMessagesAllowed)
Response.Write("Variable "+VarName+" is not set");
if (isCritical)
//HttpApplication.Dispose(); <-- как правильно прервать работу скрипта?
}
return (retVal);
}
[/codebox]
[codebox] private string getVariable(string VarName, bool isCritical)
{
string retVal;
retVal = InputPostMethod ? Request.Form.Get(VarName) : Request.QueryString.Get(VarName);
if (retVal == null)
{
if (DebugMessagesAllowed)
Response.Write("Variable "+VarName+" is not set");
if (isCritical)
//HttpApplication.Dispose(); <-- как правильно прервать работу скрипта?
}
return (retVal);
}
[/codebox]