Advanced Forum Search Results
-
HarshBardhan guided you to the right direction.
But my suggestion is: It's not good idea to use IFRAME in your web site since user can Disable IFRAME to launch. Look following IE ...
-
I visited your web site, I don’t see much long download/launch time for the content.
I do see little delay. But looks ok to me for amount of content I am downloading. Its loads much faster 2nd time since is cached on my local machine.
I can see that you can make this little bit faster (feel good factor to client).I think you are downloading all ...
-
swildermuth is correct.
Refer:
HTTP Communication and Security with Silverlight
http://msdn.microsoft.com/en-us/library/cc838250(VS.95).aspx
Downloading Content on Demand
http://msdn.microsoft.com/en-us/library/cc189021(VS.95).aspx
EX:
void foo(string str_url)
{
WebClient oWebClient = new WebClient();
...
-
//Following is a sample which you can use.
//This is example of Image download. But using WebClient you could download any kind of file
//Once you see "MainSlideImage_OpenReadCompleted" call "Download_MainSlideImage" again for next image. That will sync.
//Keep in mind this is goin to happen ASYNC. Even in you given ...
-
Basically you will have list but you will not load any images until you need it. This needs little work. I did it to browse Google Picasa Public album. I am loading only images what you are seeing on screen.
FYI: First page (circle) is picas public albums (you could browse your public album also). Click on any image to browse ...
-
Yeah, it’s not clean.
You could do more than one thing.
Give name to your controls and use name to change properties.
objMyCustomUserControl.property = desiredvalue;
Expose property or method
objMyCustomUserControl.MyProperty = ...
-
http://silverlight.net/learn/learnvideo.aspx?video=47177
-
If your HTMP page and xap are not on same server & port than you need to configure “cross domain” policy.
Please refer following MSDN article.
Making a Service Available Across Domain Boundaries
http://msdn.microsoft.com/en-us/library/cc197955(VS.95).aspx
FYI 1: clientaccesspolicy.xml will go to your Web root (where your web ...
-
If your HTMP page and “http://servername:1234/Test/Sample.xap (sharepoint) are not on same server & port than you need to configure “cross domain” policy.
Please refer following MSDN article.
Making a Service Available Across Domain Boundaries
http://msdn.microsoft.com/en-us/library/cc197955(VS.95).aspx
FYI 1: You can have your ...
-
1 void soundX_MediaEnded(object sender, EventArgs e)
2 {
3 soundX.Stop();
4 soundX.Position = new TimeSpan(0);
5 soundX.Play();
6 }
7