This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // The same but for 'GET' | |
| $.ajax({ | |
| url: '/Backend/Article/GetChildArticleIds', | |
| traditional: true, | |
| data: { | |
| filter: '', | |
| fieldId: 1115, | |
| ids: [19975] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge;chrome=1" /> | |
| </head> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.IO; | |
| using System.Text; | |
| using System.Xml; | |
| using System.Xml.Serialization; | |
| namespace AutoSenderService | |
| { | |
| public static class XmlSerializerHelper | |
| { | |
| public static string Serialize<T>(T item) |
NewerOlder