There’s a great site for finding extension methods, ExtensionMethod.net. I don’t believe either of these came from there, and I’ve not (yet…
Keep Reading →
If you’re working on creating a pleasant-looking HTML email template for your site’s newsletter, you’ll want to test it out on the major…
Keep Reading →
I’m working with NServiceBus and MSMQ for one of my projects, and I wanted to be able to show a simple dashboard with the numbers of…
Keep Reading →
Using lazy initialization in C#, a class’s state is set up such that each property’s get method performs a check to see if the underlying…
Keep Reading →
I’ve been using RazorEngine on a project and have been impressed with its simplicity and ease-of-use. However, the performance of the…
Keep Reading →
You can use the sc.exe command to install an EXE as a service on Windows Server 2008. There’s a good article on creating an application that…
Keep Reading →
Note: WebMatrix was discontinued after its final release in 2013. Introduction WebMatrix is a lightweight, easy-to-use tool for creating web…
Keep Reading →
I’ve just started getting into If This Then That (ifttt.com) and have set up a simple task that will update my Steve Smith Facebook Page…
Keep Reading →
Entity Framework 4 has Lazy Loading built-in and enabled by default. Here’s a quick bit of code to show you how to work with this feature…
Keep Reading →
Due to some database moves, I’ve recently been touching a lot of connection strings, which has me thinking about the topic. In fact, I put…
Keep Reading →
- ← Previous Page
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170 Next Page →