I have do some customizations in the infopath forms , so i have choose edit form the code option when a button clicked...I would like to know how can we get the control ids in the code.please let me know how to start with the programing in infopath.

link|improve this question

47% accept rate
what do you mean with "get the control ids"? please explain more – Andreas Scharf Sep 15 '11 at 5:43
I mean in the code behind how can we access the controls that are in Infopath Form – Govind Sep 15 '11 at 8:39
1  
You cannot access the controls directly because they aren't actual objects (like WinForm controls) - they are rendered at runtime via html/javascript. Please provide more info about what you are trying to archieve. – Andreas Scharf Sep 15 '11 at 9:17
Andreas i need to do the custom operations in infopath form.For eg: in need to save the values from the infopath form fields to sharepoint list.so i need to get the values from every field, and other one is in the form load i need to get the query string value also...(Query string might be possible using request and respose) but how can we get the values of infopath form fields – Govind Sep 15 '11 at 9:22
to retrieve a value from a field refer to this article link – Andreas Scharf Sep 15 '11 at 10:13
feedback

1 Answer

Eg: string fieldValue = MainDataSource.CreateNavigator().SelectSingleNode( "/my:myFields/my:field1", NamespaceManager).Value;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.