2
votes
2answers
62 views
Dependency injection: injecting user control in aspx page
I need to build a 'customizable' asp.net web application (not asp.net mvc).
I was thinking to use an IoC container to inject user control into aspx pages.
Has anybody ever tried …
0
votes
2answers
55 views
Sections must only appear once per config file! why???
hi,
I'm getting the following exeption:
"Sections must only appear once per config file. See the help topic for exceptions. "
my configuration file look like this:
<configS …
0
votes
2answers
17 views
ConfigurationSection - Custom Section is undefined - Why?
Hi,
I'm trying to build a custom configuration and with some reason, I can't get it work. I'll appreciate if anyone can see where my problem is.
Here is the code:
public cla …
0
votes
1answer
46 views
Specifying a custom configuration file for CKEditor
Hi there,
I am trying to add the CKEditor to a page I am currently developing but am having problems getting it to pick up my custom configuration file? I am using CKEditor in Vi …
0
votes
2answers
18 views
how to get instance of .net control which is in child page from user control in master page
i have user control called shopping cart.
which i have used in master page.
i want to get the textbox value from the child page in to user control.
is it possible to access control …
0
votes
2answers
12 views
Having UITableView edit button outside of the navigation bar.
Hello
I have a UIViewController, and within that view i have UITableView added in IB
The UITableView displays the items from my array beautifully
I would like to be able to edi …
3
votes
2answers
68 views
Integrating a simple web server into a custom main loop in python?
I have an application in python with a custom main loop (I don't believe the details are important). I'd like to integrate a simple non-blocking web server into the application whi …
0
votes
1answer
14 views
tfs project alerts
the 4 project alerts in TFS are good but I need some more of mine in them. The important one i want is when i create a new bug in TFS i want an email to be sent out.
Is there a way …
1
vote
1answer
24 views
Convert Custom Object To DataRowView C# WinForms
I have a custom object as follows
public partial class _AccessionType
{
private string accessionIdField;
private string docUrlField;
///
p …
0
votes
5answers
75 views
Android, Custom ListAdapter get TextView-Text
Hello guys
I coded an own Adapter and added it to my ListActivity via an ListView.
The reason why I wrote an own Adapter is, that i had to make some layout changes to the list-en …
1
vote
1answer
33 views
How can I pass a User model into a form field (django)?
Basically, I need to use the User's password hash to encrypt some data via a custom model field. Check out the snippet I used here: Django Encryption.
I tried this:
class MyClas …
0
votes
3answers
44 views
WPF custom derived control style
I have a custom control derived from Button:
class MyControl : Button{}
And suppose, this class is empty (has no members).
In the application's main window resources I use …
1
vote
2answers
52 views
giving a dataGridView cell a background image in C#
I want to give the row headers and column headers a custom background from an image using the .net component DataGridView. Is it possible to even do this? And if so, how?
I use Vi …
4
votes
8answers
209 views
Custom malloc() implementation header design
I am trying to write a custom allocator for debugging purposes (as an exercise) in C, where I will be using a single linked list to hold together the free list of memory using the …
0
votes
2answers
75 views
C# web service … return nested custom objects.
I've started developing a new web service in VS2005. There is only one method:
[WebMethod]
[XmlInclude(typeof(Person))]
public PersonAction GetAction()
{
PersonAction …
