.net-3.5 Questions
2
Solved
Obviously, the typical WebForms approach won't work. How does one track a user in an MVC world?
Moustache asked 5/3, 2010 at 23:19
5
Solved
I've got a need to create a dynamic proxy in C#. I want this class to wrap another class, and take on it's public interface, forwarding calls for those functions:
class MyRootClass
{
public virtu...
Hangdog asked 4/1, 2011 at 19:44
0
Since the CRM 2011 utilises .NET 4 and SharePoint is on .NET 3.5 I started two different projects CRM 2011 Connector and SharePoint 2010 BDC project for it.
When I add this library as reference I ...
Endways asked 13/7, 2011 at 10:40
4
Solved
Yes I've seen this but I couldn't find the answer to my specific question.
Given a lambda testLambda that takes T and returns a boolean (I can make it either Predicate or Func that's up to me)
I ...
5
Solved
I have a .net 3.5 application with many dlls, I tried to rebuild specific dll without building the whole application, but after replacing the old one with the new, the application throws exception ...
Resurge asked 23/6, 2011 at 12:59
1
Solved
I have created a datagrid in WPF...
I have defined several custom Columns..
<my:DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding ...
5
Solved
Hy, does anyone worked with N2 Content Management System(http://www.codeplex.com/n2).
If yes, how does it perform, performance wise(under heavy load)?
It seems pretty simple and easy to use.
Adria...
Piste asked 15/8, 2008 at 14:29
3
Solved
I have a vb.net 3.5 class library project that needs to reference two assemblies that have the same namespace. We have two third party dll's in which one is version 5.1 and the other is version 6.1...
Endometrium asked 29/6, 2011 at 13:24
4
Solved
The following code executes properly when the data key has no data to send, i.e. data: "{}" an empty JSON object and the webservice takes no parameters. I would like to post some data to the webser...
Overlap asked 29/1, 2009 at 20:16
2
Solved
Possible Duplicate:
What is the correct way to create a single instance application?
I have a Winforms app, which launches a splash screen via the following code:
Hide();
bool done ...
1
Solved
I often need to generate lists of numbers. The intervals can have quite a lot of numbers. I have a method like this:
public static int[] GetNumbers(int start, int end)
{
List<int> list = ne...
Seeress asked 26/6, 2011 at 8:54
5
Solved
At the moment, I am building json data as follows:
<%@ Page Language="VB" Debug="True" EnableViewState="false" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System...
5
Solved
I would like to resize a picture to a specific file size. For example, no more than 200KB.
What is the best approach to achieve this with C# .NET ?
Thanks !
3
Solved
For example for the following XML
<Order>
<Phone>1254</Phone>
<City>City1</City>
<State>State</State>
</Order>
I might want to find out wheth...
3
Solved
I've just updated to .NET 3.5 SP1 and my once working ASP.NET MVC page has now stopped working.
When trying to load a page I get the following YSOD
[CryptographicException: Padding is invalid and...
Sobel asked 11/2, 2009 at 13:25
1
Solved
I want to store additional information in my Enum values and therefore came up with Attributes. Since I want a single property to carry 1..n strings I tried to make the attribute constructor accept...
Venereal asked 19/6, 2011 at 16:58
3
Solved
Possible Duplicate:
SQL Server and connection loss in the middle of a transaction
I have a .NET 3.5 client app that kicks off a long-running (5-10 m) stored proc on the MS SQL Server ...
Rustproof asked 17/6, 2011 at 22:41
1
Our current environment is .NET 3.5 SP1 but we're in the process of migrating to .NET4 and Visual Studio 2010.
I would like to stick to using .NET 3.5 for the deployment/production environment how...
Paleozoic asked 4/2, 2011 at 8:18
2
Solved
I have an existing .NET 3.5 based framework that is extended using custom plugins. In summary plugins implement a common interface and the core framework invokes these via reflection. The framework...
Vagrom asked 14/6, 2011 at 20:48
3
Solved
How to determine which version of Windows? WinXP, Vista or 7 etc.
32 or 64 bit?
UPD: for .Net 2.0 - 3.5
1
Solved
I have a simple Class with ID and Name on it which I would like to link to a DropDownList but it seems that myDropDownList.DataTextField = "Name"; and myDropDownList.DataValueField = "ID"; are not ...
Lulita asked 9/6, 2011 at 17:6
2
Solved
What I effectively want to do is something like this (I realise this is not valid code):
// Attach the event.
try
{
EventInfo e = mappings[name];
(e.EventHandlerType) handler = (sender, raw) =&g...
Potful asked 4/6, 2011 at 1:18
1
Solved
So we've finally got VS2010 on some developer stations at work and can use the C# 4.0 features. Although most of what we develop will still have to target .Net 3.5 for the time being.
When I start...
5
Solved
I have a fairly small solution that includes a WPF windows application. It builds perfectly fine when built from the solution. I recently integrated the projects contained within the solution into ...
Schutzstaffel asked 4/11, 2009 at 0:29
4
Solved
I would like to use some of the features in .NET 4.0 but still target .NET 3.5 within Visual Studio 2010. Basically I want to have something like:
if (.NET 4 installed) then
execute .NET 4 featur...
Chondrule asked 25/5, 2011 at 4:40
© 2022 - 2024 — McMap. All rights reserved.