Click here to Skip to main content
15,886,110 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Gridview Merge Rows? Pin
Lash2027-Sep-09 16:56
Lash2027-Sep-09 16:56 
QuestionCannot run a website hosted outside. Locally works. Pin
Takhir27-Sep-09 12:11
Takhir27-Sep-09 12:11 
AnswerRe: Cannot run a website hosted outside. Locally works. Pin
Christian Graus27-Sep-09 13:23
protectorChristian Graus27-Sep-09 13:23 
AnswerRe: Cannot run a website hosted outside. Locally works. Pin
Not Active27-Sep-09 13:26
mentorNot Active27-Sep-09 13:26 
GeneralRe: Cannot run a website hosted outside. Locally works. Pin
Christian Graus27-Sep-09 13:30
protectorChristian Graus27-Sep-09 13:30 
GeneralRe: Cannot run a website hosted outside. Locally works. Pin
Not Active27-Sep-09 15:54
mentorNot Active27-Sep-09 15:54 
GeneralRe: Cannot run a website hosted outside. Locally works. Pin
Christian Graus27-Sep-09 16:03
protectorChristian Graus27-Sep-09 16:03 
QuestionError - can not create enum dynamically Pin
$unil Dhiman27-Sep-09 8:40
$unil Dhiman27-Sep-09 8:40 
Hi All,
I am trying to create Enum Dynamically.
When I try to Save dll It gives me error - "Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))" I am also writing code snippet :-

AppDomain currentDomain = AppDomain.CurrentDomain;
AssemblyName aName = new AssemblyName("TempAssembly");
AssemblyBuilder ab = currentDomain.DefineDynamicAssembly(aName, AssemblyBuilderAccess.RunAndSave);
ModuleBuilder mb = ab.DefineDynamicModule(aName.Name, aName.Name + ".dll");
EnumBuilder eb = mb.DefineEnum("Elevation", TypeAttributes.Public, typeof(int));
eb.DefineLiteral("Low", 0);
eb.DefineLiteral("High", 1);
Type finished = eb.CreateType();
ab.Save(aName.Name + ".dll");

I got error at last line.
Please help me.
your help is appreciated.

Regards,
Sunil Dhiman
AnswerRe: Error - can not create enum dynamically Pin
Abhijit Jana27-Sep-09 9:02
professionalAbhijit Jana27-Sep-09 9:02 
AnswerRe: Error - can not create enum dynamically Pin
Abhishek Sur27-Sep-09 9:20
professionalAbhishek Sur27-Sep-09 9:20 
QuestionArabic data is not displaying properly while exporting data to csv Pin
Khaja A. Imtiaz27-Sep-09 1:42
Khaja A. Imtiaz27-Sep-09 1:42 
AnswerRe: Arabic data is not displaying properly while exporting data to csv Pin
N a v a n e e t h27-Sep-09 1:44
N a v a n e e t h27-Sep-09 1:44 
GeneralRe: Arabic data is not displaying properly while exporting data to csv Pin
Khaja A. Imtiaz27-Sep-09 1:56
Khaja A. Imtiaz27-Sep-09 1:56 
GeneralRe: Arabic data is not displaying properly while exporting data to csv Pin
N a v a n e e t h27-Sep-09 2:08
N a v a n e e t h27-Sep-09 2:08 
GeneralRe: Arabic data is not displaying properly while exporting data to csv Pin
Khaja A. Imtiaz27-Sep-09 2:36
Khaja A. Imtiaz27-Sep-09 2:36 
AnswerRe: Arabic data is not displaying properly while exporting data to csv Pin
Abhishek Sur27-Sep-09 9:30
professionalAbhishek Sur27-Sep-09 9:30 
GeneralRe: Arabic data is not displaying properly while exporting data to csv Pin
Khaja A. Imtiaz27-Sep-09 21:27
Khaja A. Imtiaz27-Sep-09 21:27 
QuestionWhere is my database??? Pin
hasani200727-Sep-09 0:56
hasani200727-Sep-09 0:56 
AnswerRe: Where is my database??? Pin
Abhijit Jana27-Sep-09 1:01
professionalAbhijit Jana27-Sep-09 1:01 
QuestionLoad data into detailsview via C# Pin
_ASPAle_26-Sep-09 23:37
_ASPAle_26-Sep-09 23:37 
AnswerRe: Load data into detailsview via C# Pin
N a v a n e e t h26-Sep-09 23:58
N a v a n e e t h26-Sep-09 23:58 
GeneralRe: Load data into detailsview via C# Pin
_ASPAle_27-Sep-09 0:10
_ASPAle_27-Sep-09 0:10 
GeneralRe: Load data into detailsview via C# Pin
Abhijit Jana27-Sep-09 0:15
professionalAbhijit Jana27-Sep-09 0:15 
GeneralRe: Load data into detailsview via C# Pin
_ASPAle_27-Sep-09 0:17
_ASPAle_27-Sep-09 0:17 
GeneralRe: Load data into detailsview via C# Pin
N a v a n e e t h27-Sep-09 0:19
N a v a n e e t h27-Sep-09 0:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.