1
vote
2answers
1k views
Animation Extender Problems
Hi,
I have just started working with the AnimationExtender. I am using it to show a new div with a list gathered from a database when a button is pressed. The problem is the button needs …
4
votes
2answers
174 views
Mocking The RouteData Class in System.Web.Routing for MVC applications
Hi,
I'm trying to test some application logic that is dependent on the Values property in ControllerContext.RouteData.
So far I have
// Arrange
var httpContextMo …
1
vote
2answers
133 views
Encrypting and Decrypting XML sent and received by RESTful WCF Web Services
I have a web service that receives data in XML. I wish this XML to be encrypted before it is sent and have the serializer handle the decryption. This would let the service methods receive the obj …
2
votes
5answers
244 views
Handling null results with the Linq Average() method
I am new to linq and am trying to create some data points from a table to graph. The three fields of importance in this table are the id, the time and the value. I am writing a query to get the a …
1
vote
3answers
93 views
Grouping by Time ranges in Linq
I've been getting stuck into some linq queries for the first time today and I'm struggling with some of the more complicated ones. I'm building a query to extract data from a table to build a grap …
1
vote
1answer
54 views
Linq: Looking for an efficient way to search a column to see if it contains any word from a list of words.
I have a Linq query that will search a column for a word and return the number of entries found with the said word. I then loop this for each word I'm looking for.
var results = ne …
0
votes
2answers
42 views
LINQ: Prefetching data from a second table
Hi,
I'm trying to pre-fetch some foreign key data using a linq query. A quick example to explain my problem follows:
var results = (from c in _customers
from …
0
votes
3answers
79 views
How do I add an XML attribute using DataContract
Hi
I have a simple class I'm serializing.
[DataContract(Name = "Test", Namespace = "")]
public class Test
{
[DataMember(Order = 0, Name = "Text")]
public string T …
3
votes
5answers
123 views
C# DateTime comparisons accuracy and rounding.
I have two dates. One supplied by the user and accurate to the second and one from the database and accurate to the tick level. This means when they both represent 13/11/2009 17:22:17 (British da …
0
votes
Animation Extender Problems
With help from the answer given the final solution was as follows:
Add another button and hide it.
<input id="btnHdn" runat="server" type="button" value="button" style="d …
2
votes
How to serialize on to existing file?
This is indeed possible. The code below appends the object.
using (var fileStream = new FileStream("C:\file.dat", FileMode.Append))
{
var bFormatter = new BinaryFormatter();
…
