3
votes
Programmatically Select Item in Asp.Net ListView
I looked at some of what's going on in ListView under the hood and think this is probably the best approach.
void listView_ItemCreated(object sender, ListViewItemEventArgs e)
{
// …
0
votes
Dynamically reducing image dimension as well as image size in C#
You could try either of these 2 projects on CodePlex.com, both offer dynamic image generation with caching.
…
3
votes
Tiny way to get the first 25 characters
Well I know there's answer accepted already and I may get crucified for throwing out a regular expression here but this is how I usually do it:
//may return more than 25 characters …
1
vote
nullable types: best way to check for null or zero in c#
This is really just an expansion of Freddy Rios' accepted answer only using Generics.
public static bool IsNullOrDefault<T>(this Nullable<T> value) where T : struct
{
…
2
votes
Pre render event in asp.net
PreRender is the event that takes place just before the HTML for a given control/page is generated (to later be sent to the browser). So by setting an item.Visible = false here it will not be rende …
1
vote
Delete Record from GridView AND File from server in one click
I think part of your problem may be that in order for e.Values["sku"] to contain a value, it has to be bound first. I don't think HyperlinkField binds its data (I could be …
1
vote
Best way to deserialize a long string (response of an external web service)
Using the built in libraries for asp.net (System.Runtime.Serialization and System.ServiceModel.Web) you can get what you want pretty easily:
string[][] par …
