|
I have a ASP.Net web application that I want to use as a reusable user control library in other web applications.
One solution for this problem is to use what Scott Guthrie has described here:
http://weblogs.asp.net/scottgu/archive/2005/08/28/423888.aspx...
Started by Thierry on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I instead used Custom....
The virtual path solution work.
This way I could reuse all my user controls between web applications easily and without work arounds .
The same requirement as you describe and I used the virtual path provider option.
|
|
I read this article and find the concept of Virtual Library Interfaces nice for runtime loading of DLLs. However it seems that they aren't available for Win32. Is this true? And if so: Why? I don't see what would tie the idea to .NET.
EDIT: I'm mostly...
Started by Ulrich Gerhardt on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
There are also a number....
Project JEDI has an open source plugin system as part of the JVCL that loads either DLLs or packages, and can include forms and whatnot as additional functionality .
There are a number of Win32 options for this type of functionality .
|
|
When attempting to mount Virtual Media on a iDRAC6 IP KVM session I get the following error:
I'm using Ubuntu 9.04 and:
$ javaws -version Java(TM) Web Start 1.6.0_16
$ uname -a Linux aud22419-linux 2.6.28-15-generic #51-Ubuntu SMP Mon Aug 31 13:39:06 ...
Started by XCondE on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
I'll post back if I manage to figure.
On Fedora (x86_64)/RHEL5(i386) here...
library needs to be loaded.
|
Ask your Facebook Friends
|
I'm not sure what the "general" name of something like this might be. I'm looking for a library that gives me a file format to store different types of binary data in an expanding single file.
open source, non-GPL (LGPL ok) C interface the file format...
Started by Ioan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Footprint?)
The WxWindows library supports ZIP files (see http://docs.wxwidgets.org/stable/wx_wxarc.html.
|
|
What I would like to do is create a clean virtual machine image as the output of a build of an application.
So a new virtual machine would be created (from a template is fine, with the OS installed, and some base software installed) --- a new web site...
Started by Adam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can actually script a fair number of tasks in MS Virtual Server:
http://www.microsoft.com (VS.85).aspx
Also Virtual PC guy has got a ton of stuff on his blog about scripting Virtual Server/PC and now Hyper-V here:
http://blogs....
|
|
I hear the whole day the terms class library, base class library, Framework, ...
What highlights a framework and what a base class library?
Started by Peter Gfader on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
A "base" class library might mean several things depending on the context; it could refer merely refer to a core library of classes that are assumed to be useful in any application and so library", I would expect....
Of libraries.
|
|
Hello,
have you ever tried to have a QPKG version of mhvtl + iscsi support to permit the use of qnap NAS with professional backup software like backupexec or TSM ?
Today, if I want to use qnap for backup with VLT i need to :
Export a filesystem of QNAP...
Started by maddoctor on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at qnap):
UPS Slave )
4 x....
UPS Master)
TS-112 - 3.5.2_Build1126 (u.a.
Regards,
Tony Hi, any news at QPKG version of mhvtl ?
br
Peter TS-112 - 3.5.2_Build1126 (u.a .
Hi,
Thanks for your information, it is a very good source of VTL, we will discuss your suggestion .
|
|
So I have this idea and I think it's basically impossible to implement in C++... but I want to ask. I read through chapter 15 of Stroustrup and didn't get my answer, and I don't think the billion other questions about inheritance diamonds answer this ...
Started by cheshirekow on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To simplify answer let's think about virtual/non-....
If you don't have this you can't prevent having a non-virtual LibBase under the LibDerived and a separate virtual LibBase under MyBase .
This sort of inheritance tree to work.
|
|
I have a WCF service running in IIS that calls a function in a class library where httpContext is available. How can I dynamically get the web site url, this may also be a virtual directory?
Started by JL on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Could possibly have multiple domains or virtual directories pointing to the same service.
|
|
Is there any real reason not to make a member function virtual in C++? Of course, there's always the performance argument, but that doesn't seem to stick in most situations since the overhead of virtual functions is fairly low.
On the other hand, I've...
Started by Jason Baker on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Seems way to read your questions is "Why do....
One way to read your questions is "Why doesn't C++ make every function virtual by default, unless": this would add extra storage to every class unless every member function is made non-virtual.
|