Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
Ranked #4K
~1K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for bhagawatshinde

XML and Excel file it is not the same. If I need to read data from XML then I use something like that [code] System.Xml.XmlDocument myDoc = new System.Xml.XmlDocument(); myDoc.LoadXml(xmlString); System.Xml.XmlElement root = myDoc.DocumentElement; System.Xml.XmlNodeList myNodes = root.SelectNodes("node1/node2"); [/code] Then I iterate through myNodes and take necessary data with this …

Member Avatar for softwareskill
0
893
Member Avatar for Verygoodguy

Stored procedure with checking if email address already exists is more preferable. If you just specify Unique key, then you will get an exception when attempting to insert a duplicate email address. And if you use SP, you can put there also some actions to perform in a case if …

Member Avatar for Verygoodguy
0
145
Member Avatar for pshirgaonkar

You call some business logic layer public method from the UI, and in that method you make an SQL call and return the result of the call to the UI. It's also recommended to have a separate Data Access Layer for reading data from DB, Business Logic Layer's functionality is …

Member Avatar for pshirgaonkar
0
126

The End.