Hi all,
I use a Word Xml Template in ASP.Net application. Basically when a user
clicks on a certain button on a web form, I open the template using
XmlDocument.Load method; replace some strings in the document with user
selected values; and save the document with a unique name generated at
runtime. Everything works fine in the test environment. But before I deploy
the application, I would like to ask one question - If two users
simultaneously click the button to generate the document; would the
XmlDocument.Load method allow both users to load the document? If not, is
there any other way to achieve this?
Thanks.
-Nikhil