Kayıtlar

Nisan 7, 2011 tarihine ait yayınlar gösteriliyor

Flashvar parametreleri eksikse

Flashvar ile gönderdiğiniz parametreler eksik çıkıyorsa, yani bir kısmını gönderip, bir kısmını gönderemiyorsanız bu durumu halletmek için aşağıdaki sembolleri kullanabilirsiniz. Amplify’d from www.longtailvideo.com You should indeed use URLEncoded values. The player will de-encode them. The values are: ? » %3F = » %3D & » %26 Read more at www.longtailvideo.com   See this Amp at http://amplify.com/u/by7iw

Linq ile xml namespace hatası

Generic handler dosyasında dinamik xml oluşturmak isterken root node'a xmlns atamak istediğimde aşağıdaki hatayı aldım "The prefix cannot be redefined from within the same start element tag, çözümü için aşağıdaki cevabı buldum. Xml namespace'i xml dökümanı oluşturmadan önce atamanız gerekiyor Amplify’d from guyellisrocks.com XNamespace xn = "http://fake/namespace" ; The prefix cannot be redefined from within the same start element tag The following snippet of code had me stumped for a while: XDocument xDoc = new XDocument ( new XDeclaration ( "1.0" ,                                         "utf-8" , "yes" ),     new XComment ( "This is a comment" ),     new XElement ( "elementName" ,         new XAttribute ( "xmlns" , "http://fake/namespace" ),         new XAttribute ( "version" , "1.00" ),         new XElement ( "innerelement" ,             new XAt