Hi Goyo,
I think your problem is not related with NAV Ws.
Quote:
I've tried the Update method from the WebService with fixed values, but I don't know where I have to execute this Update method, because when I call it, the data has disappeared because of the PostBack.
It depend on you. Because of when you want to update back to nav. Eg. Button Click Event, textbox chaged Event.
Here is example.
aspx
<asp:TextBox ID="txt" runat="server" EnableViewState="false" AutoPostBack="true"
ontextchanged="txt_TextChanged"></asp:TextBox>
<asp:Button ID="btn" runat="server" Text="Btn" onclick="btn_Click" />
CB
protected void btn_Click(object sender, EventArgs e)
{
//Do something for WS
Response.Write(txt.Text);
}
protected void txt_TextChanged(object sender, EventArgs e)
{
//Do something for WS
}
You can find with this word in Google "asp.net sample projects with source code"
WS Example
http://blogs.msdn.com/b/freddyk/Asp.net
http://forums.asp.net/Best Regards,
Yukon