Advanced Forum Search Results
-
VS2010 has returned this error when attempting, on the design surface, to Edit Bound Columns in a Datagrid:
Could not load file or assembly 'System.Windows.Controls.Data.VisualStudio.Design, PublicKeyToken=2c5c654d367bf4a7' or one of its dependencies. The system cannot find the file specified.'
-
Fausto
Maybe -
In your web app make sure you reference:
System.Web.Ria
System.Web.Extensions
System.Web.Services
and if you are using Domain Services
System.Web.DomainServices
System.Web.DomainServices.Providers
Hope this helps
-
Hi Fausto
Set a specific user, logon & password for your authentication database then modify your web.config:
<connectionStrings>
<remove name="LocalSqlServer" />
<add name="LocalSqlServer" connectionString="Data Source=[your db server];Initial ...
-
What a silly-billy - all I needed to do was set the url in the DB field and put all images in the web app!!
-
Answer is to
<remove name="LocalSqlServer" />
in connection strings in the web.config then set up a 'LocalSqlServer' connection to the existing SQL Server db
-
Answer is like this using a RIA Domain Service:
<dataControls:DataForm x:Name="dfPix" Margin="10" Header="Image" ItemsSource="{Binding Data, ElementName=dds}" ...
-
I can display images from a file located in the Silverlight 3 app and I can upload new images to another file in the Asp.net app but is there a way to read/write to a common file?
-
Answer is the hyperlink button needs a TargetName attribute (_top/_parent/_blank) and not to the ContentFrame ...
-
Yesss - many thanks - takes me back to the old IE5 behaviour days...
-
An http:// hyperlink works in a standard Silverlight 3 RC app but not in a RIA Services business app!
Howcome it seems to be possible only to link to a xaml page in a business app hyperlink whilst an http:// link returns a 'Page not found' error?