Problem hosting a Silverlight movie properly in aspx and html Programming Web Development by vuyiswamb …;/script> </head> <body background="http://ecash.ebam.co.za/Silverlight/images/MainBackground.jpg"> <… the Live website is [URL="http://ecash.ebam.co.za/Silverlight"]http://ecash.ebam.co.za/Silverlight[/URL] i am… Creating a Cookie and Setting it Programming Web Development by vuyiswamb ….UtcNow + TimeSpan.FromDays(2000); bool secure = false; String domain = "Ecash"; StringBuilder cookie = new StringBuilder(); cookie.Append(String.Concat(key…;expires=Mon, 14 Nov 2016 16:58:19 GMT;domain=Ecash[/QUOTE] now i want to retrieve the Value of the… Response brings back an Incorrect URL Programming Web Development by vuyiswamb … //Temporary: Check if this needs to be forwarded to eCASH for processing if (!string.IsNullOrEmpty(creditResponse.Misc)) { string … = string.Concat("http://111.111.11.118/Ecash/Ecashpos/PurchaseCredit.aspx?", Request.QueryString.ToString()); Response.… Re: Problem hosting a Silverlight movie properly in aspx and html Programming Web Development by stbuchok … any video clip at all but I can see the eCash stuff (by the way the title says eChash). Can you… How bypass this ? Programming Web Development by vuyiswamb …"> </asp:ScriptManager> <img alt="Ecash" height="609" src="images/BG.jpg… Re: need a good PHP forum script Programming Web Development by koolguy EgoldStore v.1.0 fully developed extreme script visit: [url]http://ecash.ifastnet.com[/url] Re: Creating a Cookie and Setting it Programming Web Development by cfwebdeveloper Look into HTTPOnly cookies. I think from what I remembered in asp.net that might lead you to your solution. :) Re: Creating a Cookie and Setting it Programming Web Development by jfarrugia I normally use: If Not Request.Cookies("userName") Is Nothing Then Dim aCookie As HttpCookie = Request.Cookies("userName") Label1.Text = Server.HtmlEncode(aCookie.Value) End Request.Cookies contains a list of cookies available under that domain Re: Response brings back an Incorrect URL Programming Web Development by stbuchok You may have something specified in your web.config. If I remember correctly you will have one config file for debug mode and another for release. Also, is the XAP file being cached and not being overridden? If the 222.222.22.22:2211/BuyCredits.aspx URL was something you were using before then caching is a good possibility. Re: Response brings back an Incorrect URL Programming Web Development by vuyiswamb i have been give access. i will check tomorow morning and let you know thanks guys for your replies Re: Creating a Cookie and Setting it Programming Web Development by aspproject use Request.Cokkies("Cookiesname").value for getting values using ASP.Net Re: Creating a Cookie and Setting it Programming Web Development by vuyiswamb Good Day All I am not creating a Cookie in ASp.net, i am creating the Cookie in Silverlight, the Implementation of this will be different Re: How bypass this ? Programming Web Development by Ramesh S Hi, If you want to bypass the loading of IFRAME in page load and re-load the url (src property of IFRAME) later, then set src property to empty string("") in the HTML markup (.aspx page). You can set the url in your .cs code as follows. [CODE] protected void Button1_Click(object sender, EventArgs e) { iframecredit.Attributes… Re: How bypass this ? Programming Web Development by vuyiswamb I have done the following i have set the SCR to an empty string [CODE] <iframe name="I1" src="" style="width: 744px; height: 305px; margin-top: 16px; margin-bottom: 0px;"> Your browser does not support inline frames or is currently configured not to display inline frames. </… Re: How bypass this ? Programming Web Development by Ramesh S Hi, Since you are trying to set the url "https: //www.vcs.co.za/vvonline/ccform.asp" which is not in the same domain, The iframe may not be refreshed due to browser security reasons. If you set the url from the current domain, it will work. Otherwise you need to set the url from code behind(.cs) as it executed from a full postback. Re: How bypass this ? Programming Web Development by vuyiswamb sorry i saw that space in the other URL , i am trying to use the same url , i have change it , but nothing is happening Re: How bypass this ? Programming Web Development by Ramesh S Hi, Removing the space in the URL works for me in IE7 but not in Firefox 4.0. You are using the name of the IFRAME in the getElementById() function. You need to use the ID of the IFRAME instead of name. Hence changing the following statement works for me in both IE7 and Firefox4.0. [CODE] function loadIframe() { document.getElementById("…