The .NET framework is a software framework designed mainly for the Microsoft Windows operating system. It includes an implementation of the Base Class Library, Common Language Runtime (commonly referred to as CLI) and Dynamic Language Runtime. It supports many programming languages, including C#, ...
4
votes
3answers
867 views
Where can I put custom classes in ASP.NET MVC?
I have some utility functions and Pagination function. I want to create classes named Utility and Pagination for these functions respectively, so that I can use these class function in more than one ...
14
votes
3answers
1k views
ASP MVC HTML Helpers - Good or Bad?
I understand the reason for having the HTML helpers in ASP.NET MVC and extending this to provide your own, but I am wondering whether using HTML helpers is a good idea.
I thought one of the benefits ...
1
vote
2answers
73 views
high frequency timing .NET
I'm looking to create a high frequency callback thread. Essentially I need a function to execute at a regular high frequency (up to 100Hz) interval. I realize that windows has a normal thread ...
3
votes
4answers
3k views
Add code to run before any view? Equivalent to Masterpage pageload?
What might be the equivalent to a MasterPage code-behind page load in MVC? I want to check if a user is logged in my local app or facebook or twitter before every view is returned.
1
vote
2answers
32 views
Creating Webservice which has child parent concept
I want to create web service as below. i get result as list for 1 people, but i just want common things as it's parent and have many child i.e. Detail in it's child level.
<person>
...
0
votes
1answer
12 views
EF 5 Code first Entities FirstOrDefault method returns null
This is an example based on Programming Code First EF.
Please look at the below classes. When the PersonRepository calls in instantiated and InsertOrUpdate method is called Null value is returned. As ...
1
vote
1answer
110 views
What Should I be using here? Threading? Async?
I am not sure what to use in this scenario.
I have an asp.net web api method that basically does this
Finds points of interests from foursquare near user.
Uses the foursquare locations to do ...
0
votes
2answers
35 views
How would it be possible to have a Windows Phone 8 application interact directly with a Windows PC ? (Using WP8 as an input device for Windows 8)
I'm trying to create a Windows Phone 8 application that can send mouse movements from the phone to a Windows 8/7 PC. Can't find a good place to start with this being that there's no documentation of ...
-5
votes
0answers
29 views
i have to create Task Manager using C# can any one help me how to create task manage [closed]
i have to create Task Manager using C# can any one help me how to create task manage.
2
votes
2answers
55 views
Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance
Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that does a lot of lookup using ...
0
votes
0answers
6 views
Oledb loading blank instead of Excel data in DataGrid
Why am I unable to see any data in my data grid when there is heaps of data in my Excel File.
It's just showing Blank Page instead of data.
My code is
using System;
using System.Data;
using ...
4
votes
2answers
107 views
Route Google Analytics v3 API through a proxy server
We are using Google Analytics API v3 (dot net version) for reporting some statistical data on our website. I have the code running fine on my local machine, but it wouldn't work on the production ...
0
votes
0answers
23 views
Convert number from Unicode to natural integer representation C#.NET
I am developing a program in Marathi language using Unicode font (Mangal,for Keyboard : Google IME). In it I want to add/validate some numbers entered in Marathi Unicode, by getting their actual ...
2
votes
4answers
51 views
How to get gridview column value in codebehind
How to get the AppId from gridView in codebehind, if I clicked the edit image button in second row.
Aspx Code:
<asp:BoundField HeaderText="AppId" DataField="AppID" />
...
2
votes
4answers
6k views
Export to Excel doesnt work on IE under SSL (https)
I've been trying to fix something on a secure website (https) which is an Export to Excel button that generates a CSV file.
It works on Firefox, Chrome , etc... but not in Internet Explorer.
I have ...
1
vote
3answers
79 views
Getting/setting the value of an integer inside a Razor view
I have a a list of elements and I would like to edit it.
I created this snippet:
@{
ViewBag.Title = "Liste des comptes administrateurs";
Layout = "~/Views/Shared/_Layout.cshtml";
int i ...
0
votes
1answer
16 views
Why list show strange behaviour?
Work on Vs2010 EF,C#.
Have two list(oLisTranItem,oListTaxItem) ,need to copy one list properties values in another list ,then I need to work on new list.Problem is after copy content element one ...
1
vote
1answer
42 views
WPF GUI starving network messages
I am developing a Window7, C#/WPF based GUI using Blend/XAML and I want to show H.264 video which I get from the RTP stream of a video call. I am using a C based open source library for making the ...
0
votes
1answer
14 views
Prevent Range Validator to show error message with regular expression validator in asp.net
I have one textbox with id txtNumOfBooks which I am validating against following 3 validators:
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ...
0
votes
0answers
14 views
Does the end-user require .net 4.0.2 to run an application that uses LocalDB?
I have read that SQL 2012 LocalDB Requires .net framework 4.0.2.
I am researching possible deployment options for my client-server application with a winforms frontend.
What I can't figure out is, ...
-1
votes
1answer
32 views
ICryptoTransform.TransformBlock : What's going on?
I'm learning the ICryptoTransform.
And I encrypted some data and decrypted them back using the ICryptoTransform.TransformBlock. No exception is throwed, but I found my data move right about one ...
5
votes
2answers
6k views
“There was no endpoint listening at…”
I'm trying to run a simple WCF Service...
My Wcf Service .config:
<system.serviceModel>
<services>
<service name ="WebService.Receptor">
<endpoint
address = ...
-1
votes
2answers
60 views
Get text from dynamically created TextBox
I have a button when clicked creates textboxes dynamically:
for (int i = 0; i < length; i++)
{
Name.Add(new TextBox());
System.Drawing.Point locate = new ...
0
votes
1answer
10 views
2 Instances of SimpleMembership in MVC 4 Razor solutions
I have a solution for a client I am working on that is being built in .net MVC 4 Razor that contains the following;
Public website with a client login area.
Private company webapp for running the ...
-2
votes
0answers
8 views
Register com dll using WIX per user install
How should I register .Net COM dll using per user wix installer because. It does not ask for elevated permission prompt.
0
votes
0answers
30 views
C# downloading from Web
I am trying to develop a TurboIt downloader with C#.
The program does the following correctly.
Given the file URL it sends initial web request.
Based on the response it sends regular download ...
6
votes
3answers
505 views
How to protect an API key in a .NET application
My application hits a number of web services, such as Twitter and Flickr. It uses API keys from those services, and I'd like to obfuscate them in my binaries. (I'm not really worried about piracy or ...
13
votes
1answer
126 views
Changed behavior of string.Empty (or System.String::Empty) in .NET 4.5
Short version:
The C# code
typeof(string).GetField("Empty").SetValue(null, "Hello world!");
Console.WriteLine(string.Empty);
when compiled and run, gives output "Hello world!" under .NET version ...
0
votes
3answers
373 views
How to get the method call history?
I am trying to get the list of calls made from the beginning of a try block to the exception. In the code below, when I fall into the Catch block, the StackTrace in the Exception object is the ...
1
vote
1answer
36 views
Releasing COM objects in .NET from within enumerations and other reference scenarios
I have a WinForms application that uses COM Interop to connect to Microsoft Office applications. I have read a great deal of material regarding how to properly dispose of COM objects and here is ...
1
vote
2answers
37 views
Casting error in MVC
I am developing a MVC app. with razor syntax.
I am trying to delete one value from another.
@{
double DeductedAmount1 = @Model.SanctionedAmount - @Model.DeductionAmount;
}
This ...
4
votes
3answers
1k views
Flickr API Key storage
I have a C# application that I want to use Flickr's API. I received my API key and shared secret, but when receiving the key it explicitly mentions not giving out the API key we were provided.
...
1
vote
0answers
48 views
Function in Discriminated Union Constraining the Type of a Generic Parameter
I am trying to port some Haskell code to F# and I am getting a strange error I don't know how to get around. I have a discriminated union with a function defined as below:
type OtherType =
...
0
votes
1answer
24 views
Simple way to check how many rows I have in my DateBase
Im connected with my DateBase through the SqlConnection class. Is there any simple why to check how many rows is in the Database or do I have to make DateReader and increment till the last row in it ?
...
0
votes
1answer
16 views
How to parse nested JSON string using .NET
I'm trying to parse a nested JSON string returned from the GCM (Google Could Messaging) server using VB.NET. The JSON string looks like this:
{ "multicast_id": 216,
"success": 3,
"failure": 3,
...
0
votes
1answer
23 views
How to display the members of a second Class in a Datagridview
I have an ArrayList of objects (for example Employees).
Employee Class Properties:
name (String),
email (String),
telephone (String),
workgroup (Workgroup)
The Employee class has a property ...
4
votes
4answers
3k views
Saving Word DOCX files as PDF
I'm using openxml to create Word DOCX files. I'd like to save these documents once they are created as PDF files. Is there a way I can do this in openxml? I assume the answer is no. If it is no, is ...
191
votes
8answers
96k views
C# Set collection?
Does anyone know if there is a good equivalent to Java's Set collection in C#? I know that you can somewhat mimic a set using a Dictionary or a HashTable by populating but ignoring the keys, but ...
-1
votes
1answer
20 views
Sorting a generated table in my view (visual studio .net)
<h2>Documenten</h2>
<table border="1"">
<tr>
<th">
title
</th>
<th>
description
</th>
<th>
...
2
votes
1answer
42 views
Write image as 32 bit per channel (128 bit per pixel) bitmap from .net
I generate HDR images at runtime which I need to save in perfect quality (I'm chaining those images through multiple filters so I want to keep maximum fidelity each time to avoid too much quality ...
2
votes
2answers
2k views
“Specified element is already the logical child of another element. Disconnect it first” error in my code, Any solution?
I have a little problem.
This is my code:
stackPanelShapesContainer = new StackPanel();
InitializeStackPanle();
var gotFocusStackPanle =(StackPanel) canvas.Children[gotFocusStackPanelIndex];
...
4
votes
2answers
96 views
WPF program launches super fast on one computer but super slow on another
My wpf program has a strange problem regarding the startup performance on different computer with same specs.
One computer loads my program less than a second.
Another computer with the same spec ...
0
votes
0answers
21 views
.NET - Overriding printer's default for color
I am printing to a color printer. The printer's default setting for color is black-and-white.
I have tried the following, but when I open the printer's preferences dialog, the color is still set to ...
2
votes
4answers
292 views
Convert List<double[]> to List<T>
I have a list of doubles List<double[]> which I want to convert to a List<T> where T is a class.
The array of double contains 17 values e.g. [1.0, 2.0, 3.0, 4.0, 5.0,.. 17.0 ].
Then I ...
1
vote
0answers
25 views
.net program loses ability to write files
I have a .net program that uses log4net to write logs to the c:\temp directory and stores some app data in the ProgramData directory. The program will run fine for several days then suddenly stop ...
0
votes
0answers
21 views
.Net - Convert image format and mantain clipping path metadata
TIFF files when exported by some applications can contain a clipping path, in addition to the image data itself. This data is ignored when read with most applications and APIs.
Is there any way to ...
9
votes
6answers
432 views
.NET stream capabilities - is the CanXXX test safe?
There is a fairly common pattern used in .NET to test for the capabilities of a class. Here I'll use the Stream class as an example, but the issue applies to all classes that use this pattern.
The ...
0
votes
1answer
33 views
Deadlock from combination of async/await, CancellationTokenSource, Threading.Timer
In the process of writing a wrapper to arbitrary cancellable code that's supposed to run while a certain condition holds true (which has to be verified regularly), I came across interesting behavior ...
1
vote
1answer
47 views
How do submit a form without clicking submit button BUT with code in (C# web browser control)
Hi is there a way to submit a form WITHOUT clicking the submit button?
Keep in mind this is inside the webBrowser1 control in C# . So if i click a button in my C# application it should ...
4
votes
3answers
418 views
Change notification without INotifyPropertyChanged? (excerpt from Pro WPF in C# 2010)
While reading Pro WPF in C# 2010 the author writes:
"You can raise an event for each property. In this case, the event must have the name PropertyNameChanged (for example, UnitCostChanged). It’s up ...







