1
vote
1answer
47 views

Keeping sensitive data inside application code

I have an application build in asp.net mvc. This application stores sensitive encryption keys used by various methods. However, somebody can easily read the security keys i use if they open the ...
0
votes
0answers
10 views

how to set devExpress combox client side event with reflection?

I'm trying to set the client side SelectedIndexChaged event to a combobox and I have this code Assembly testAssembly = Assembly.LoadFile(DLL); Type controlType= ...
0
votes
2answers
78 views

Setting Property Value

I need to get and set a property value dynamically I read this Get property value from string using reflection in C# and did a below code for getting a value public Object GetPropValue(Object obj, ...
0
votes
1answer
27 views

Access Property Value using Reflection

I have an object public class School { public Employee Emp{get;set;} public string City{get;set;} } public class Employee { public string Name{get;set;} } Using reflection I need to fetch this ...
1
vote
2answers
113 views

How to extend a C# ASP.NET class if DLL may or may not be available?

Ok, think along the lines of a plugin. I have my own dll and it has it's own functionality. If a third-party dll is present, I'm extending a class inside from that dll. Everything works great ...
0
votes
1answer
127 views

Using metadata and/or reflection to generate ASP.NET tooltips?

Using a C#/ASP.NET, I was wondering if there is a way to use metadata to easily generate tooltips for labels and textboxes. I have found many resources on how to do this in ASP.NET MVC, but not plain ...
0
votes
0answers
32 views

AspxMenu Custom Itemclick event with reflection

I'm trying to add a custom ItemClick event to an ASPxMenu like this: my custom Event definiton is public void menu_ItemClick(object source, EventArgs e) I changed the second default parameter ...
0
votes
1answer
61 views

How to get all the property and values in the Request variable

I know that I can loop through each key value pair in Request headers variables as follow foreach (var key in Request.Headers.AllKeys) { // headers += key + "=" + Request.Headers[key] + ...
0
votes
2answers
105 views

Programmatically get Summary comments at runtime

I'm looking for a way to programmatically get the summary portion of Xml-comments of a method in ASP.net. I have looked at the previous related posts and they do not supply a way of doing so in a web ...
0
votes
0answers
35 views

ASP.NET Configurable User Control

I have a question regarding the approach I am taking in solving following scenario is correct / efficient or not ? Platform: ASP.NET 3.5 / 4.0 Language C# I have a Page which do Product Listing and ...
0
votes
1answer
33 views

Bind EventHandler for custom form controls

I am trying to bind an event to a form element created in a custom Form class. I am quite clueless as to how I can bind the method that exists on the class FormLoader, a UserControl file. Ex: public ...
4
votes
1answer
74 views

Using Reflection to get all properties of an object not implemented by an interface

I want to be able use reflection to loop through the properties of an object that DO NOT implement an interface Essentially I want to achieve the opposite of this How do I use reflection to get ...
0
votes
1answer
64 views

Dynamically calling a method in C# ASP.NET

I've seen users tackle this question before, like in thread: C# very dynamic invocation But I haven't had much success with the code given. I'm basically trying to call a method using some variable ...
2
votes
1answer
65 views

Implement Web solution as Winform

A few time ago I developed a win for app based on primary start app, meaning it's an application which able to load user profile and other stuff, such as username, surname, mail address, granted ...
0
votes
2answers
142 views

Reflection on IQueryable<T> can't find property

I created a custom gridview control and exported it into a dll so I can reuse it. Inside the dll I created a function to get the DataSource, I'm trying to fill a dropdown from there but is failing. ...
0
votes
1answer
62 views

Dynamically Invoke Method from method name string?

I have the following code: public string GetResponse() { string fileName = this.Page.Request.PathInfo; fileName = fileName.Remove(0, fileName.LastIndexOf("/") + 1); ...
0
votes
1answer
68 views

Type.GetFields returns empty array

I am trying to get public fields dynamically but it keeps returning an empty list. I load a usercontrol successfully but it is of type UserControl which means I use .BaseType to get the real type. ...
1
vote
1answer
220 views

Reflecting ASMX via WSDL, with custom types

I need to reflect an ASMX web service via WSDL. Simple cases go all fine, using the accepted answer of this. But then I have some complex type (a strong-typed dataset) defined in there. The original ...
1
vote
1answer
47 views

Removing single specific unowned event subscription on HttpApplication

This is semi-related to a question I opened a while ago. The way the ASP.NET Forms Authentication module behaves is it registers a subscription to app.AuthenticateRequest and app.EndRequest The way ...
2
votes
2answers
118 views

Prevent from using system.reflection in code

I wrote some code that compile in runtime C# code into assembly and stores it in memory in asp.net. After that it is possible to execute such compiled code. Code to compile in runtime is written by ...
1
vote
1answer
131 views

Reflection in ASP.Net website

I have been working with a Visual Studio Addin project for a while. The purpose of this addin is to tell me which Store Procedures are used where in my many projects. I achive this by loading all my ...
0
votes
1answer
97 views

find or list methods inside particular method of current executing page

There is an asp.net webpage. Inside Page_Load event there could be multiple method calls (MethodA, MethodB(arg1, arg2) etc.) I have httpmodule. While accessing the page, it will first go thorough ...
0
votes
2answers
87 views

How to cast to a control found on the page

Working on ASP.NET app, my project need to find control from page ,use bellow syntax to find control from a page: public static Control FindControlRecursive(Control Root, string Id) { Control ...
2
votes
2answers
123 views

How can I output a property with the DisplayFormat DataFormatString applied in a console app (ideally querying the object by string)?

Here's a simplified look at a class I have: public class SalesMixRow { [DisplayFormat(DataFormatString = "{0:c0}")] public decimal? DelSales { get; set; } } In a web app razor view, I can ...
2
votes
1answer
63 views

Export table with random rows and columns (defined by an object) to excel

I have a task that I am sure can be easily generalized in a simple way. I have different tables to be exported to excel dynamically, and what I am doing is creating the table columns in HTML from the ...
1
vote
1answer
140 views

Sharing session state using web.config not reflection

I'm sharing session variables in two different asp.net web applications. I'm using "StateServer" mode. For sharing, i set _appDomainAppId of the HttpRuntime same for applications with using ...
0
votes
1answer
581 views

get and set parameters from LoadControl(string path) in c#

I want to add usercontrols to my page based on a XML: <?xml version="1.0" encoding="utf-8" ?> <Fields> <Group name="Main" text="Innhold"> <Field type="TextBox" name="Name" ...
3
votes
4answers
112 views

Is it possible to do this with reflection? [duplicate]

Possible Duplicate: Dynamic LINQ OrderBy I have a list of custom sort options that are passed to the server from a client-side grid control (KendoUI grid if you're wondering). These sort ...
0
votes
1answer
253 views

Assign custom class permissions check for controller actions in ASP.NET MVC4

I have an ASP.NET MVC4 site with custom user/role provider. Entity Framework works with the user and role entities at the bottom level. Now I am introducing a concept of RolePermissions. Each role has ...
2
votes
0answers
196 views

Calling a DLL with reflection and configuration dependencies

I have a service that calls methods in other libraries through reflection. However, some of these libraries have external dependencies such as app.config files that it sometimes uses to perform its ...
0
votes
2answers
123 views

Creating A New Object Based Off An Existing Object Filtered By a List of Properties

I want to remove all properties from an object based off a list. The reason is in my web service call my response object is rather large I want the ability to allow the client to restrict the ...
1
vote
2answers
199 views

Alternatives to using property.setvalue() for efficiency purposes

What alternatives are there to property.setvalue()? I've read that it is very slow. I'm using it to map IDataReader to POCO objects. This is a truncated version of the code. Everything here is very ...
1
vote
1answer
166 views

Get Usercontrol which inherits Type X using reflection

Given this usercontrol ascx in a web application: <%@ Control Language="C#" Inherits="TypeX" Codebehind="TypeX.ascx.cs" %> Is it possible to use reflection to get the usercontrol when I start ...
0
votes
0answers
84 views

ASP.Net Accessing Object Properties in Control Attribute

I've two classes as these Namespace Business Public Class Core Public Shared ReadOnly Property Settings As DBManager.Settings Get Return ...
2
votes
4answers
189 views

get value of a property by its path in asp.net

here a solution is given to get value of a property of a class by supplying its name . now I wonder how I can do the same in this condition : I have a class MyClass . this class ha a property of type ...
0
votes
1answer
159 views

Using reflection to get namespace from ASP.NET template code-behind class?

I'm trying to get the namespace from ASP.NET template (.aspx) code-behind class. The code-behind file contains something like: namespace MyTopNamespace.SubNamespace { public partial class ...
0
votes
2answers
86 views

How to get the web site assembly from a library

My solution comprises 2 projects, a ASP.NET MVC 3 project -- Company.Web and a .NET library project -- Company.BLL. The library contains a class implementing IHTTP -- Company.BLL.Fido. I have ...
0
votes
2answers
157 views

Getting assembly information in .NET framework

I have a setup of crystal reports installed in 32-bit OS and 64-bit OS, in 32-bit it installs in SOFTWARE location under HKEY_LOCALMACHINE. in 64-bit it installs in SOFTWARE\WOw6432Node location ...
0
votes
1answer
262 views

AppDomain.CreateInstanceAndUnwrap throws an exception FileLoadException with STG_E_ABNORMALAPIEXIT on Windows 2k3

In ASP.NET application I'm trying to execute method in AppDomain from different assembly stored in bin subfolder. I'm creating AppDomain and calling AppDomain.CreateInstanceAndUnwrap. It works fine on ...
0
votes
1answer
215 views

Getting assembly version of executing web application

I want to implement some cache busting code in my library which can be integrated with ASP.NET web applications/sites. This will be implemented through appending a version string to the end of URLs. ...
1
vote
1answer
39 views

Read Title of MVC assembly

I have MVC app and it use MyLib library. I want to read Title of the MVC application from MyLib library. How to do that? The problem with a demos which I found that they use HttpContext.Current to get ...
1
vote
1answer
65 views

reflect on class for certain attribute

How can I write reflection code that goes through my project and looks for classes with special attribute and able to collection 2 pieces of information: ClassName.PropertyName and string that is ...
5
votes
3answers
134 views

How can I use Reflection to get the value of a Static Property of a Type without a concrete instance

Consider the following class: public class AClass : ISomeInterface { public static int AProperty { get { return 100; } } } I then have another class as follows: public class ...
0
votes
0answers
69 views

How can I modify the OutputCache HTML?

I'd like to make a little utility to visualise which parts of an ASP.Net page are currently being output cached. To do this, I thought I might add some elements to the returned HTML. So, for ...
0
votes
1answer
804 views

Accessing page public property from user control in master page

I am trying to access a public property of a page inside a master page from a user control which is also inside the same master page. Most of the examples I have seen recommend that I place the value ...
0
votes
1answer
201 views

how to load in new appdomain from filepath?

İ am sorry it is too classic problem loading dll. But i can not solve this basic problem: i have a plugins file path i want to load these assembly into new domain but i can not do this. Firstly; it is ...
1
vote
0answers
161 views

access to ASP.NET session when using Activator.CreateInstance to execute a class method

I have an ASP.NET site that checks for specific requests (Begin_request in global.asax). If a certain request comes in, which in this case is executed via javascript, reflection is used to run a ...
1
vote
1answer
308 views

Remove/Edit word office builtindocumentproperties in c#

Please need your help regarding this code. I am wrting a code in c# that can will clear a word document built in property, and also replace it with a provided replacement where provided. Base on the ...
1
vote
2answers
715 views

ASP.NET MVC 3 dynamic form generation

I am trying to generate a form at run-time. I have ended up with this approach @using (Html.BeginForm()) { @foreach (var propertyInfo in ...
0
votes
1answer
405 views

Bind Business Object to ASP.NET DataList

I have a business object with a Dictionary<string, Contact> field that I would like to bind to a ASP.NET DataList using reflection. The ItemTemplate for the DataList defines four TextBox ...

1 2 3 4 5