Introducing SharpShip 1.0 UPS API Library for .Net
- in C#
In a project I am working on I need to make use of the UPS API. I could do this in the code directly without much trouble, but in an attempt to be “best practice”…
a little philosophy in code
In a project I am working on I need to make use of the UPS API. I could do this in the code directly without much trouble, but in an attempt to be “best practice”…
I am working on an open source project to wrap the UPS API in a C# library. I needed this functionality in a project and decided to just make it happen. You can see the…
Retrieve specific value from the Repeater.Item.DataItem in your code. Ok so I searched around for how to get specific value from a Repeater.Item.DataItem and found a common answer:
1 | string messageSubject = ((DataRowView)e.Item.DataItem).Row["messageSubject"].ToString(); |
In an effort to cast the…