hi everyone
i am using asp.net and xml to create a page but it gives me an error
System.Web.HttpException: DataBinding: 'System.Data.DataRowView' does not contain a property with the name 'para'.
**AdminWelcomeMsg.aspx**
<%@ Page Language="C#" MasterPageFile="ContentMasterPage.master" Debug="true"%>
<%@ Import Namespace="System.Xml"%>...
After some reading and posting, I am fairly sure that I want to use SSDS to analyze some data I have. However, I could use some pointers to help me get going.
I have a simple SQL Server table:
* PKID (Int)
* ApplicationName (VarChar)
* MethodName (VarChar)
* TimeInMs (Integer)
* DateTime (DateTime)
This table records the length of t...
I don't understand how extending EventArgs is useful.
public class ClickedEventArgs : EventArgs {
int x;
int y;
public ClickedEventArgs (int x, int y) {
this.x = x;
this.y = y;
}
public int X { get { return x; } }
public int Y { get { return y; } }
}
Code is above. How can i use this inheritance?Also; i want to...
Is there any performance counter? Or i really get result like that:
Jagged Arrays: 2000 ms
Arrays : 3000 ms
ArrayList : 4000 ms
How can i code method to get performance result?
...
How can i use any dataset form SQL in GoogleChart? i really like googleChart. But i want to use Gchart with dataset from Sql' query result in C#?
...
If actions is a Panel, am I able to raise the Click event of it's parent?
I have this code at the moment, but the Click event isn't a method, so this code is invalid.
Does anyone know how I can achieve this?
actions.Click += delegate(object Sender, EventArgs e)
{
((Panel)Sender).Parent.Click();
}
...
I need it, but don't want to reinvent hot water.
Question by example, syntax just as possible example :
.net> load myLibrary.dll
myLibrary.dll loaded
.net> Person p "John" "Doo" 32
Instance of myLibrary.Person created (p)
.net> print p.Age
32
So I'm looking for a commandline interface to access the public methods and properties of...
I have a Problem after I restive data from multiple result set I update the data and save it and its updated in Sql but when I retrieve it again its bring the old data what I can do?
...
There are some technologies like LINQ and WPF which are nice, but installation of .NET 3.5 is still slow procedure. It's important to understand - among Windows users how many of them have .NET 3.5 installed?
Is there any good up to date stats gathered about .NET Version availability/usage?
I've searched a lot, but can't find.
Update: ...
Is there some built-in constant for the path delimiter (i.e. \ vs /)
...
Can anyone help me by explaining how to extract image urls from HTML File in C#
...
How can I specify that Excel uses the .NET framework version 2.0 when running .NET dlls other than adding an excel.exe.config file to the Office Binary folder?
Our application runs in Excel and uses VBA which makes calls into managed code in .NET assemblies. I believe the textbook way of doing this is to add excel.exe.config to the Off...
I have a WCF web service, currently served over WSHttpBinding endpoint with Transport security and Windows client credential type. The service is hosted on top of IIS 5.1 with SSL configured using a certificate from the domain certificate authority. IIS itself runs with the identity of [email protected] on a domain computer. Anonymous acce...
I am getting two contradicting views on this. Some source says there should be less little methods to reduce method calls, but some other source says writing shorter method is good for letting the JIT to do the optimization.
So, which side is correct?
...
I'm using NVelocity to build an email message. Rather than mark every reference as quiet ($!name instead of $name), I'd like to default to quiet references.
Is it possible?
...
Google announced the Analytics Data Export API some days ago, thereby making it much easier to get analytics data for a site. The API debuted with Java and Javascript clients, but no direct .Net support (other than going straight for the XML). It seems the API is similar to the other Google Data APIs though, and there's a .Net client for...
I have created a small application using Microsoft .NET.
I don't have problems with MS .NET versions, the problem is with the 2.0 version itself.
It's a graphic problem. The application doesn't show the same user interface on two different Windows XP. One with a classic style and the other is XP style.
Also this doesn't show the same un...
Hi Girls and Guys!
I'm currently working on some evaluation work for a project that I'm planning.
I recently looked at solutions for a data storage mechanism for my application and while researching stumbled upon SQLite. I currently use SQLite with the System.Data.SQLite wrapper.
I really like the way it works but I have one problem w...
I have some Listboxes in my app bound to ObservableCollections, and i would like to animate an item if it's being removed.
I already found a question about animating added items by using the FrameworkElement.Loaded event, but of course that doesn't work the same way with the Unloaded event.
Is there any way to do this in a way that ca...
In a typical ASP.NET web application architecture, we are using a OO language such as C# and a relational database such as SQL server for data.
I was reading a book on Linq that said "The problem is there is a gap between a OO programming language and a relational database"
What exactly is the author trying to imply?
EDIT:
Thanks for...