Advanced Forum Search Results
-
Here's a question I asked in a blog:
Concerning authentication. Once a user is logged via Silverlight... does that mean the .aspx pages are also logged in? If a user logged in using the .aspx membership system could that user details be shared with Silverlight?
Just wondering how a hybrid system of .aspx and Silverlight would work with ...
-
Yes, I did say I saw the samples. It still requires work to make it a true diffgram xml.
What you say it lacks... I agree with.
Have you tried ComponentOne's DataTable, etc.? Does it come close to MS DataSet?
-
I've been pushing for DataSet implementation on other blogs... just found this one.
I agree with sladapter, as to the importance of having a generic DataSet in Silverlight. At least as an optional .dll. All it needs to do is take an xml map it to strong type dynamic class. And after changing data, spit out an dataset ...
-
Is this session state shared with asp.net?
Can I login with a .aspx page and have the login details shared with Silverlight within the same web? Or login with Silverlight (v3) and share it's state with .aspx?
-
The DataSet that is strong typed, has a DataAdaptor built into it is just a small piece of what the DataSet is. My DataSet usage starts with:
DataSet ds=new DataSet(); //much of the rest is defined by xml workflow scripts. Very little coding.
My biggest use of a DataSet is through a webservice. In the WinForm client, it is the best ...
-
Read all the posts to date, read the linked articles and tried some of the samples. I'm impressed, I should have checked here a long time ago.
Here's what I'm looking for. I already have a large investment in server(and client) processing of non-typed datasets. Both our web and winform clients use the results. It ...