Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic SaveToXml   fail (Read 2734 times)
parapara
YaBB Newbies
*
Offline


susan

Posts: 20
Location: China
Joined: Apr 3rd, 2008
SaveToXml   fail
Jul 18th, 2008 at 5:13am
Print Post  
???
.asp.cs
Code
Select All
    protected void Page_Load(object sender, EventArgs e)
    {

  if (!IsPostBack)

  {


Diagram dg = this.DiagramView1.Diagram;


TableNode tn = dg.Factory.CreateTableNode(0, 0, 40, 20, 2, 2);


tn.Expandable = true;


tn.Caption = "hello";//Please written in Chinese


tn[0, 0].Text = "Please written in Chinese";//Chinese


tn[1, 0].Text = "Please written in Chinese";//Chinese

  }
    }
    protected void SaveToXml_Click(object sender, EventArgs e)
    {

  this.DiagramView1.Diagram.SaveToXml(Server.MapPath("12.xml"));
    }

 



for example:

.asp
Code
Select All
    <form id="form1" runat="server">
    <div>

  <ndiag:DiagramView ID="DiagramView1" runat="server" Height="461px" Width="602px">


<Diagram Font="MingLiU, 2.9world" />

  </ndiag:DiagramView>

  <asp:Button ID="SaveToXml" runat="server" OnClick="SaveToXml_Click" Text="SaveToXml" /></div>
    </form>
 



Without knowing why,the method of SaveToXml is failed.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: SaveToXml   fail
Reply #1 - Jul 18th, 2008 at 9:34am
Print Post  
Do you mean you are you getting some exception, or the Chinese text is lost after reloading the file?
  
Back to top
 
IP Logged
 
parapara
YaBB Newbies
*
Offline


susan

Posts: 20
Location: China
Joined: Apr 3rd, 2008
Re: SaveToXml   fail
Reply #2 - Jul 21st, 2008 at 1:12am
Print Post  
I mean the method of SaveToXml is unsuccessful
when the text is Chinese.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: SaveToXml   fail
Reply #3 - Jul 21st, 2008 at 8:38am
Print Post  
Does "unsuccessful" mean the method throws an exception?
  
Back to top
 
IP Logged
 
parapara
YaBB Newbies
*
Offline


susan

Posts: 20
Location: China
Joined: Apr 3rd, 2008
Re: SaveToXml   fail
Reply #4 - Jul 22nd, 2008 at 5:29am
Print Post  
yes,the method of SaveToXml throws an exception.
I've sent you an email.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint