-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.master.cs
executable file
·614 lines (610 loc) · 52.4 KB
/
site.master.cs
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
public partial class site : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
HtmlMeta metaDescription = new HtmlMeta();
metaDescription.Name = "description";
metaDescription.Content = "Maya McMahon Photography provides wedding, portrait, and event photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke.";
HtmlTitle title = new HtmlTitle();
title.Text = "Blacksburg Wedding Photographer - Maya McMahon Photography - Professional Photography - Virginia";
if (Request.CurrentExecutionFilePath.Contains("portfoliowedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This wedding portfolio page highlights some of her best Wedding photographs.";
title.Text = "Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("portfolioengagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This engagement portfolio page highlights some of her best engagement photographs.";
title.Text = "Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("portfolioportrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This portrait portfolio page highlights some of her best portrait photographs.";
title.Text = "Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("buildYourWeddingPackage.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page allows users to customize a wedding package to suit their needs.";
title.Text = "Wedding Package";
}
else if (Request.CurrentExecutionFilePath.Contains("pricing.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page outlines pricing for services provided from Maya McMahon Photography.";
title.Text = "Photography Pricing";
}
else if (Request.CurrentExecutionFilePath.Contains("pricingWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page outlines wedding pricing for services provided from Maya McMahon Photography.";
title.Text = "Wedding Photography Pricing";
}
else if (Request.CurrentExecutionFilePath.Contains("pricingEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page outlines engagement pricing for services provided from Maya McMahon Photography.";
title.Text = "Engagement Photography Pricing";
}
else if (Request.CurrentExecutionFilePath.Contains("pricingFamily.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family, maternity, and newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page outlines family, maternity, and newborn pricing for services provided from Maya McMahon Photography.";
title.Text = "Family, Maternity, Newborn Photography Pricing";
}
else if (Request.CurrentExecutionFilePath.Contains("pricingEvent.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides event photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page outlines event pricing for services provided from Maya McMahon Photography.";
title.Text = "Event Photography Pricing";
}
else if (Request.CurrentExecutionFilePath.Contains("faq.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page outlines frequently asked questions of Maya McMahon Photography.";
title.Text = "Photography Services FAQ";
}
else if (Request.CurrentExecutionFilePath.Contains("contact.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. Use this page to contact Maya McMahon Photography and book your photography session.";
title.Text = "Contact Photographer";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredArchive.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page lists archived photography sessions from Maya McMahon Photography.";
title.Text = "Archived Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredEgeWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Ege wedding photography session from Maya McMahon Photography.";
title.Text = "Ege Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKirknerMaternity.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides maternity photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kirkner maternity photography session from Maya McMahon Photography.";
title.Text = "Kirkner Maternity Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredCafaroWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Cafaro wedding photography session from Maya McMahon Photography.";
title.Text = "Cafaro Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredBarnesPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Barnes portrait photography session from Maya McMahon Photography.";
title.Text = "Barnes Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHaydenNewborn.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hayden newborn photography session from Maya McMahon Photography.";
title.Text = "Hayden Newborn Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKatrinaFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Katrina family portrait photography session from Maya McMahon Photography.";
title.Text = "Katrina Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWyattNewborn.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Wyatt newborn photography session from Maya McMahon Photography.";
title.Text = "Wyatt Newborn Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredCarlCaityEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Carl and Caity engagement photography session from Maya McMahon Photography.";
title.Text = "Carl Caity Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredRamseyWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Ramsey wedding photography session from Maya McMahon Photography.";
title.Text = "Ramsey Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKaylorWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kaylor wedding photography session from Maya McMahon Photography.";
title.Text = "Kaylor Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredEasyWindBridalSession.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Easy Wind Bridal photography session from Maya McMahon Photography.";
title.Text = "Easy Wind Bridal Session Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredSpauldingFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Spaulding family portrait photography session from Maya McMahon Photography.";
title.Text = "Spaulding Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWitcherFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Witcher family portrait photography session from Maya McMahon Photography.";
title.Text = "Witcher Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredBelotePortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Belote portrait photography session from Maya McMahon Photography.";
title.Text = "Belote Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredJuanarenaMaternity.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides maternity photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Juanarena maternity photography session from Maya McMahon Photography.";
title.Text = "Juanarena Maternity Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMarkeatterFamilyEvent.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides event photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Markeatter event photography session from Maya McMahon Photography.";
title.Text = "Markeatter Event Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredAliagaFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Aliaga family portrait photography session from Maya McMahon Photography.";
title.Text = "Aliaga Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWitmerWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Witmer wedding photography session from Maya McMahon Photography.";
title.Text = "Witmer Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKumPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kum portrait photography session from Maya McMahon Photography.";
title.Text = "Kum Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredBrightEvent.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides event photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Jacob Bright - VCOM Military Promotion Ceremony event photography session from Maya McMahon Photography.";
title.Text = "VCOM Military Promotion Ceremony Event Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredNestrickFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Nestrick family portrait photography session from Maya McMahon Photography.";
title.Text = "Nestrick Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredThomasJuanarenaNewborn.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Thomas Juanarena newborn portrait photography session from Maya McMahon Photography.";
title.Text = "Thomas Juanarena Newborn Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredRedmanWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Redman wedding photography session from Maya McMahon Photography.";
title.Text = "Redman Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHoltFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Holt family portrait photography session from Maya McMahon Photography.";
title.Text = "Holt Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredOlsonWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Olson wedding photography session from Maya McMahon Photography.";
title.Text = "Olson Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredEricaHavensBridal.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides bridal photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Erica Havens bridal photography session from Maya McMahon Photography.";
title.Text = "Erica Havens Bridal Session Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredDillWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Dill wedding photography session from Maya McMahon Photography.";
title.Text = "Dill Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredJarradMeghanEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Jarrad and Meghan engagement photography session from Maya McMahon Photography.";
title.Text = "Jarrad and Meghan Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWaldenWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Walden wedding photography session from Maya McMahon Photography.";
title.Text = "Walden Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKatrinaFamilyPortrait2014.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Katrina family portrait photography session from Maya McMahon Photography.";
title.Text = "Katrina Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKempWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kemp wedding photography session from Maya McMahon Photography.";
title.Text = "Kemp Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWrightWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Wright wedding photography session from Maya McMahon Photography.";
title.Text = "Wright Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredDickersonWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Dickerson wedding photography session from Maya McMahon Photography.";
title.Text = "Dickerson Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHaileyJohnsonBridal.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides bridal photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hailey Johnson bridal photography session from Maya McMahon Photography.";
title.Text = "Hailey Johnson Bridal Session Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredRycroftFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Rycroft family portrait photography session from Maya McMahon Photography.";
title.Text = "Rycroft Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredLutchmedialFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Lutchmedial family portrait photography session from Maya McMahon Photography.";
title.Text = "Lutchmedial Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredTimJenniferEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Tim and Jennifer engagement photography session from Maya McMahon Photography.";
title.Text = "Tim and Jennifer Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMattKaylaEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Matt and Kayla engagement photography session from Maya McMahon Photography.";
title.Text = "Matt and Kayla Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredAlyssaThomassonNewborn.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Alyssa Thomasson newborn portrait photography session from Maya McMahon Photography.";
title.Text = "Alyssa Thomasson Newborn Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredTonyAnnEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Tony and Ann engagement photography session from Maya McMahon Photography.";
title.Text = "Tony and Ann Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredBeersWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Beers wedding photography session from Maya McMahon Photography.";
title.Text = "Beers Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWitcherFamilyPortrait2014.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Witcher family portrait photography session from Maya McMahon Photography.";
title.Text = "Witcher Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredCrequeFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Creque family portrait photography session from Maya McMahon Photography.";
title.Text = "Creque Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredTadCandonEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Tad and Candon engagement photography session from Maya McMahon Photography.";
title.Text = "Tad and Candon Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMorganKristenEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Morgan and Kristen engagement photography session from Maya McMahon Photography.";
title.Text = "Morgan and Kristen Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHolroydFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Holroyd family portrait photography session from Maya McMahon Photography.";
title.Text = "Holroyd Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredDickersonFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Dickerson family portrait photography session from Maya McMahon Photography.";
title.Text = "Dickerson Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredJuanarenaFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Juanarena family portrait photography session from Maya McMahon Photography.";
title.Text = "Juanarena Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredRamsayMaternity.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides maternity photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Jordan and Christina maternity photography session from Maya McMahon Photography.";
title.Text = "Jordan and Christina Maternity Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredNRVBrideModels2015.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Spring 2015 NRV Bridal Showcase wedding photography session from Maya McMahon Photography.";
title.Text = "2015 Spring NRV Bridal Showcase Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHawleyWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hawley wedding photography session from Maya McMahon Photography.";
title.Text = "Hawley Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredDavidTashaEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the David and Tasha engagement photography session from Maya McMahon Photography.";
title.Text = "David and Tasha Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHartsockNewborn.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hartsock newborn portrait photography session from Maya McMahon Photography.";
title.Text = "Hartsock Newborn Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredBoivinWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Boivin wedding photography session from Maya McMahon Photography.";
title.Text = "Boivin Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMarkAllieEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Mark and Allie engagement photography session from Maya McMahon Photography.";
title.Text = "Mark and Allie Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredRamseyNewborn.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Ramsey newborn portrait photography session from Maya McMahon Photography.";
title.Text = "Ramsey Newborn Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredRowlesWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Rowles wedding photography session from Maya McMahon Photography.";
title.Text = "Rowles Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWhiteWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the White wedding photography session from Maya McMahon Photography.";
title.Text = "White Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredJuanarenaNewborn2015.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides newborn photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the 2015 Juanarena newborn portrait photography session from Maya McMahon Photography.";
title.Text = "Juanarena Newborn Photography 2015";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKimBandyBridal.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kim Bandy Bridal photography session from Maya McMahon Photography.";
title.Text = "Kim Bandy Bridal Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredPendeltonWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Pendelton wedding photography session from Maya McMahon Photography.";
title.Text = "Pendelton Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredDowdyWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Dowdy wedding photography session from Maya McMahon Photography.";
title.Text = "Dowdy Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredReedFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Reed family portrait photography session from Maya McMahon Photography.";
title.Text = "Reed Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKristinaHenryBridal.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kristina Henry Bridal photography session from Maya McMahon Photography.";
title.Text = "Kristina Henry Bridal Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMarybethMarshallBridal.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Marybeth Marshall Bridal photography session from Maya McMahon Photography.";
title.Text = "Marybeth Marshall Bridal Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredRushWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Rush wedding photography session from Maya McMahon Photography.";
title.Text = "Rush Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHolroydFamilyPortrait2015.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Holroyd family portrait photography session from Maya McMahon Photography in 2015.";
title.Text = "Holroyd Family Portrait 2015 Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKyleKendallPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kyle and Kendall portrait photography session from Maya McMahon Photography.";
title.Text = "Kyle and Kendall Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredAustinShianneEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Austin and Shianne engagement photography session from Maya McMahon Photography.";
title.Text = "Austin and Shianne Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredCoxWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Cox wedding photography session from Maya McMahon Photography.";
title.Text = "Cox Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMenconiFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Menconi family portrait photography session from Maya McMahon Photography in 2015.";
title.Text = "Menconi Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMikeLindseyMilitaryBallPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Mike and Lindsey portrait photography session from Maya McMahon Photography in 2015.";
title.Text = "Mike and Lindsey Military Ball Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredBrentBrandiEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Brent and Brandi Engagement photography session from Maya McMahon Photography in 2015.";
title.Text = "Brent and Brandi Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMooreFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Moore Family Portrait photography session from Maya McMahon Photography in 2015.";
title.Text = "Moore Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMesserWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Messer Wedding photography session from Maya McMahon Photography in 2015.";
title.Text = "Messer Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredAlanKrupaEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Alan and Krupa Engagement photography session from Maya McMahon Photography in 2015.";
title.Text = "Alan and Krupa Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWoodsSeniorPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides college senior photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Katie Woods Senior Portrait photography session from Maya McMahon Photography in 2016.";
title.Text = "Katie Senior Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredJohnsonWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Johnson Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Johnson Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKinKatieEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kin and Katie engagement photography session from Maya McMahon Photography in 2016.";
title.Text = "Kin and Katie Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHiltSeniorPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides college enior photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Molly Hilt Senior Portrait photography session from Maya McMahon Photography in 2016.";
title.Text = "Molly Senior Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredFinneyWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Finney Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Finney Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredTylerMelissaEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Tyler and Melissa engagement photography session from Maya McMahon Photography in 2016.";
title.Text = "Tyler and Melissa Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredKruzliakWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kruzliak Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Kruzliak Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHinsonWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hinson Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Hinson Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMitchellWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Mitchell Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Mitchell Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMusserWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Musser Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Musser Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredSweckerWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Swecker Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Swecker Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredDickersonFamilyPortrait2016.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Dickerson Family photography session from Maya McMahon Photography in 2016.";
title.Text = "Dickerson Family Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMayFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the May Family photography session from Maya McMahon Photography in 2016.";
title.Text = "May Family Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredCaldwellWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Caldwell Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Caldwell Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHardestyWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hardesty Wedding photography session from Maya McMahon Photography in 2016.";
title.Text = "Hardesty Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMartinFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Martin Fammily photography session from Maya McMahon Photography in 2017.";
title.Text = "Martin Family Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredChrisHeatherEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Chris and Heather engagement photography session from Maya McMahon Photography in 2017.";
title.Text = "Chris and Heather Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHiltonSarahEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hilton and Sarah engagement photography session from Maya McMahon Photography in 2017.";
title.Text = "Hilton and Sarah Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredBoydSeniorPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides senior portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Kassandra Boyd Senior photography session from Maya McMahon Photography in 2017.";
title.Text = "Kassandra Boyd Senior Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredChrisSarahEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides engagement portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Chris and Sarah Engagement photography session from Maya McMahon Photography in 2017.";
title.Text = "Chris and Sarah Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredZunigaWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Zuniga Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Zuniga Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredGaryAmyEngagement.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Gary and Amy Engagement photography session from Maya McMahon Photography in 2017.";
title.Text = "Gary and Amy Engagement Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredCopelandWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Copeland Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Copeland Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredSakryWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Sakry Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Sakry Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredMeadeGalyeanWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Meade Galyean Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Meade Galyean Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredHartsockFamilyPortrait.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides family portrait photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Hartsock Family photography session from Maya McMahon Photography in 2017.";
title.Text = "Hartsock Family Portrait Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredEppardWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Eppard Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Eppard Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredNaveWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Nave Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Nave Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredSchuWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Schu Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Schu Wedding Photography";
}
else if (Request.CurrentExecutionFilePath.Contains("featuredWaltersWedding.aspx"))
{
metaDescription.Content = "Maya McMahon Photography provides wedding photography services for Blacksburg, Christiansburg, Giles, Montgomery and Roanoke. This page features the Walters Wedding photography session from Maya McMahon Photography in 2017.";
title.Text = "Walters Wedding Photography";
}
myHead.Controls.Add(title);
myHead.Controls.Add(metaDescription);
}
}