Ведущий Диалог
Зарегистрирован: 17 November 2007
Сообщения: 237
Примеры кода: 0
|
Рефлексия? |
22 May 2008 08:40 |
|
|
|
|
SpyCode:
Вообщем след. ошибка
Error 1 The type or namespace name 'type' could not be found (are you missing a using directive or an assembly reference?)
C:\inetpub\wwwroot\*****\Default.aspx.cs 63 29 http://localhost/*****/
Что за:
method = typeof(type).GetMethod(Request.Params["method"], BindingFlags.Static | BindingFlags.NonPublic);
?
сделай
method = type.GetMethod(Request.Params["method"], BindingFlags.Static | BindingFlags.NonPublic);
Данное сообщение получено с сайта GotDotNet.RU
|
|