Tagged Questions
7
votes
2answers
373 views
URL's not being resolved when in UserControl (ASP.NET)
If I pass the derived class testA a PlaceHolder that contains a Hyperlink, with a url that starts with
a tilde, it resolves it correctly.
However, when I pass testB
(identical apart from it ...
5
votes
5answers
1k views
In C#, how do I resolve the IP address of a host?
How can you dynamically get the IP address of the server (PC which you want to connect to)?
3
votes
2answers
119 views
Getting variable by name in C#
Is there a way to get the value of a variable just by knowing the name of it, like this:
double temp = (double)MyClass.GetValue("VariableName");
When I normally would access the variable like this
...
2
votes
2answers
146 views
IoC Container Unity is messing with me
There is a possibility I'm not understanding how it's supposed to work.
Where I start my app I do this:
IUnityContainer container = new UnityContainer();
...
2
votes
2answers
118 views
Relative URL not working in System.Web.UI.UserControl
public class foo : System.Web.UI.Control
{
public foo()
{
var a = new HyperLink(){ Text="Test", NavigateUrl="~/abc.aspx"};
this.Controls.Add(a);
}
}
The above code works ...
2
votes
2answers
538 views
.NET substitute dependent assemblies without recompiling?
I have a question about how the .NET framework (2.0) resolves dependent assemblies.
We're currently involved in a bit of a rewrite of a large ASP.NET application and various satellite executables. ...
1
vote
3answers
94 views
C# IUnityContainer resolve method
I've created a simple PRISM application with a standard bootstrapper inherited from UnityBootstrapper.
The UnityBootstrapper in turn has the public property IUnityContainer and this interface has the ...
1
vote
1answer
44 views
module class's resolvemethod messes up on overridden methods
I have a derived class with a method that overrides the base class's method, (like this) but module.ResolveMethod(token, typeArguments, methodArguments) gives me a MethodBase with a declaringType of ...
1
vote
1answer
372 views
how to resolve file path reference to a file in asp.net mvc
hi
how to resolve file path reference to a file in asp.net mvc. Suppose I have an image file in the content/image/img.jpg". How do i get the physical path of the file in asp.net mvc.
1
vote
3answers
484 views
How to know full paths to DLL's from .csproj file?
I wonder if there is some way to know full paths to the dll's that are listed in .csproj file.
The most interesting for me is to resolve paths to default dll's like System.Xml.dll, System.Data.dll ...
1
vote
2answers
627 views
C# - How to retreive the target of a Junction or Symlink with a standard user
I am trying to get the target of a junction in my program, but the only way I managed do it is:
Requesting Backup privileges
p-invoke CreateFile with special parameters to get a handle to the ...
0
votes
4answers
148 views
C# Cannot resolve symbol
I don't know why I'm getting this error. Seems elementary. Anyway I have a singleton class called EmailSender. The code below is short and easy. The issue is that I can't use sender in the MainWindow ...
0
votes
1answer
594 views
NHibernate query-over with restriction on a referenced entity
I am using Nhibernate with SQL server 2008.
I am trying to execute the following code:
var localization = session.QueryOver<T>()
.Where(idFilter).AndRestrictionOn(x => ...
-1
votes
2answers
44 views
How to get domain name from IP address
I have a website hosted on a shared server. When I use DNS.GetHostEntry(IPAddress) function what I am getting is a domain name for shared server (Name server). I want to fetch the actual domain name.
...