Click here to Skip to main content
15,881,882 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Dealing with browser back button after logging out Pin
dptalt29-Sep-09 1:48
dptalt29-Sep-09 1:48 
QuestionEditor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala28-Sep-09 6:15
sskala28-Sep-09 6:15 
AnswerRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
Abhishek Sur28-Sep-09 7:00
professionalAbhishek Sur28-Sep-09 7:00 
GeneralRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala28-Sep-09 7:06
sskala28-Sep-09 7:06 
AnswerRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
Abhishek Sur28-Sep-09 7:12
professionalAbhishek Sur28-Sep-09 7:12 
GeneralRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala28-Sep-09 7:53
sskala28-Sep-09 7:53 
GeneralRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala29-Sep-09 3:44
sskala29-Sep-09 3:44 
QuestionError - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 5:59
$unil Dhiman28-Sep-09 5:59 
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. I am working on Vista Premium.
I gave permissions to Network Service User but still not solved.
Please help me.
your help is appreciated.

Regards,
Sdhimann
AnswerRe: Error - can not create enum dynamically Pin
N a v a n e e t h28-Sep-09 6:34
N a v a n e e t h28-Sep-09 6:34 
GeneralRe: Error - can not create enum dynamically Pin
Abhishek Sur28-Sep-09 6:43
professionalAbhishek Sur28-Sep-09 6:43 
GeneralRe: Error - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 19:10
$unil Dhiman28-Sep-09 19:10 
GeneralRe: Error - can not create enum dynamically Pin
N a v a n e e t h28-Sep-09 20:21
N a v a n e e t h28-Sep-09 20:21 
GeneralRe: Error - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 20:44
$unil Dhiman28-Sep-09 20:44 
AnswerRe: Error - can not create enum dynamically Pin
Michael Eber28-Sep-09 6:43
Michael Eber28-Sep-09 6:43 
GeneralRe: Error - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 18:44
$unil Dhiman28-Sep-09 18:44 
AnswerPlease Don't Cross Post Pin
Abhijit Jana28-Sep-09 7:52
professionalAbhijit Jana28-Sep-09 7:52 
QuestionExtracting innerHTML from a div elements that contains dynamic controls Pin
compninja2528-Sep-09 5:32
compninja2528-Sep-09 5:32 
AnswerRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
N a v a n e e t h28-Sep-09 5:48
N a v a n e e t h28-Sep-09 5:48 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls [modified] Pin
compninja2528-Sep-09 6:16
compninja2528-Sep-09 6:16 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
Abhishek Sur28-Sep-09 6:32
professionalAbhishek Sur28-Sep-09 6:32 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
N a v a n e e t h28-Sep-09 6:41
N a v a n e e t h28-Sep-09 6:41 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
compninja2528-Sep-09 10:52
compninja2528-Sep-09 10:52 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
Member 457983222-Apr-10 22:05
Member 457983222-Apr-10 22:05 
QuestionWeb User Control ASP.NET 2.0 Pin
Swastik Das28-Sep-09 5:25
Swastik Das28-Sep-09 5:25 
AnswerRe: Web User Control ASP.NET 2.0 Pin
Abhishek Sur28-Sep-09 6:10
professionalAbhishek Sur28-Sep-09 6:10 

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.