Click here to Skip to main content
16,007,111 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: N-Tier ASP.NET Pin
Not Active27-Sep-09 15:52
mentorNot Active27-Sep-09 15:52 
GeneralRe: N-Tier ASP.NET Pin
Illegal Operation27-Sep-09 16:06
Illegal Operation27-Sep-09 16:06 
GeneralRe: N-Tier ASP.NET Pin
Christian Graus27-Sep-09 16:31
protectorChristian Graus27-Sep-09 16:31 
AnswerRe: N-Tier ASP.NET Pin
Vimalsoft(Pty) Ltd28-Sep-09 2:15
professionalVimalsoft(Pty) Ltd28-Sep-09 2:15 
QuestionGridview Merge Rows? Pin
Lash2027-Sep-09 14:44
Lash2027-Sep-09 14:44 
AnswerRe: Gridview Merge Rows? Pin
Christian Graus27-Sep-09 14:53
protectorChristian Graus27-Sep-09 14:53 
GeneralRe: Gridview Merge Rows? Pin
Lash2027-Sep-09 15:19
Lash2027-Sep-09 15:19 
GeneralRe: Gridview Merge Rows? Pin
Christian Graus27-Sep-09 16:00
protectorChristian Graus27-Sep-09 16:00 
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 

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.