Advanced Forum Search Results
-
To set cookies, I used
private void SetCookie(string key, string value)
{
// Expire in 7 days
DateTime expireDate = DateTime.Now + TimeSpan.FromMinutes(20);
string newCookie = key + "=" + value + ";expires=" + expireDate.ToString("R");
...
-
Thanks! But how to set cookies with Unicode character in Silverlight?
-
Hi all!
I have problem with set cookies in Unicode character with Silverlight Project
Plz help me! Thanks!
-
I had resolved this by use
FrameworkElement e = this as FrameworkElement; (instead of FrameworkElement e = this.content as FrameworkElement;)
if (e is MyProject.Core.Application) =============> result is TRUE
But how can I do to get content of UserApp.xaml by use:
FrameworkElement e = this as ...
-
public partial class UserApp : MyProject.Core.Application
{
}
public partial class MyProject.Core.Application : ControlBase
{
}
public abstract class ControlBase : UserControl, IDisposable
{
}
class ControlBase and Application are in project that ...
-
Hi samcov,
Acording you, my SL 2 beta 1 application will not work in SL Beta 2?
-
Silverlight Beta 2 is commercial go live license.
I'm a poor student. I can't allow to use it
-
Hi all,
How could i have these source code?
I want to ask a problem:
In ASP.net , we store the shopping Card in Session.
In Silverlight, how can we store the shopping Card?
Thanks so much!
-
I need a few code line to understand your solution:
For simple case like this, you can just create a new control and set the properties with the original control's property value. You do not need to copy every property, just a few important ones. Most of them are default value anyway.
because I write this:private void ...
-
I know: One child can not belong to two parents.
But
I don't know: How can I make a copy of my element and then add the copy to the parent control? Can you help me or share any samples?
Thanks for your helping!