Advanced Forum Search Results
-
hello,
once again - i have a question.
I would like to create a E-Mail Contact Form which calls an WCF Service, in that i will use the System.Net.Mail to send the Message.
But:
I have to store the Username and Password for the Mailbox in the web.conf - Is this safe?
How could i prevent the WCF Service from being abused for ...
-
i too ran into this problem.
Silverlight 3 + RIA + Dataform = no more Add Button
Anyone found a solution?
thanks
-
Hello,
I created a Silverlight App using the ASP.net AuthenticationService in a WCF like shown in this blog post:
http://blogs.msdn.com/brada/archive/2008/05/03/accessing-the-asp-net-authentication-profile-and-role-service-in-silverlight.aspx
Using VS 2008 und the Development Webserver the Solution works fine, but after Publishing I get ...
-
hello,
i have set the Visibility to All, but the Delete, Add Buttons are greyed out? Do i have to somehow enable them?
myDataForm.CommandButtonsVisibility = DataFormCommandButtonsVisibility.All;
<dataFormToolkit:DataForm x:Name="myDataForm" Height="514" CurrentItem="{Binding ElementName=myListDG, Mode=TwoWay, ...
-
Hello,
we are looking for a Reporting Solution for our Silverlight Application and we are not really sure if we should use the SQL Reporting Services or a 3rd Party Solution like Perpetuums Report Sharp Shooter?
Our reuqirements aren't that special and we already have an SQL Server in house.
It would be nice if you could share your ...
-
before context.SubmitChanges() i inserted the following lines and it seems to work, but is this intended?
IEditableObject SelectedProject = myDG.SelectedItem as Web.Project;
SelectedProject.EndEdit();
-
The DataGrid AutoGenerateColums ist set to false and my Columns look like the following:
<data:DataGridTextColumn Header="Sa" Binding="{Binding Sa, Mode=TwoWay,
Converter={StaticResource FormatConverter},ConverterCulture=de-DE,
ConverterParameter=\{0:0.00\}}"/>
I will have a look at the Converter, maybe that causes the ...
-
Sorry that i didn't reply, but i really had no time.
The return value is indeed false, but when i look into the entity when the error occurs, the entity base shows:
HasValidationErrors = 0
-
sorry i already called myDG.CommitEdit() not EndEdit but even if i call it with (DataGridEditingUnit.Row, true) i get the same error.
-
Hello,
the ItemsSource of my DG is set like this: myDG.ItemsSource = context.Projects;
If the User clicks on the Save Button (context.SubmitChanges();) while a cell is still in editing mode the following exception is thrown:
Entity 'Projects : 3' is currently being edited and has uncommitted changes. A call to BeginEdit must be ...