Advanced Forum Search Results
-
I have the same problem Too.
I have applications on two independent servers, one with 2003 server standard, and one with 2008 server standar. Two different applications, the only common way is the use of WCF services.
I delete the bin and ClientBin and copy the files, and it works.
Update:
It happends on tree different applications. And The ...
-
Then, the only way is to use Skyfire, it works with simple Silverlight apps, but with complex hangs.
-
This October, Windows Mobile 6.5 was launched. It includes Silverlight support?.
I test Skyfire http://get.skyfire.com/ on my Windows Mobile 6.1 and it works, almost fine.
Any news on Silverlight and Windwos Mobile?
-
You must read the single register value from the database then change and submit.
In c#, asuming "ctx" is the context object:
var product = ctx.products_table.FirstOrDefault(d => d.productid == 123);
You can use .Single, .SingleOrDefault, .First or .FirstOrDefault (check the doumentation). Then you can reassign the value, and ...
-
A workarround is to make a class that has an array as property. Then you make an array to this class. Something like this.
public class ArrayContainer
{
public string[] subArray { get; set; }
}
To define the array...
ArrayContainer[] generalArray = new ArrayContainer[10];
To use the ...
-
It's more easy that you make.
[quote user="nestea1969"]1. Should I keep my database (SQL 2005 express under App_Data/xxxx.mdf) at the same folder? I mean no need to move it to a folder under wwwroot.[/quote]
You can put the .mdf file outside the IIS. WCF call to a local SQL server with local thrust. Usually put the .mdf on the SQL ...
-
A workarround can be to make a Custom Crontrol that contaisn the image control and an string property for the full path.
-
You can define and static object in the class like:
public class myCustomControl.....
{
public static int counter = 0;
...
}
If you need a global variable, you can create the property con the App class or your own global class. To make a reference to the counter:
...
-
There isn't needed in SL3 projects. Now the object definition is included in the Silverlight.js
-
The problem is in SL2 the columns collection on an AutogeneratedColumns contains the columns autogenerated.
In SL3 the columns object has 0 elements.
This make's me to change some code on my apps!