The Active Network
ActiveMac Anonymous | Create a User | Reviews | News | Forums | Advertise  
 

  *  

  The great ASP.NET code-behind debate
Time: 06:18 EST/11:18 GMT | News Source: TechRepublic | Posted By: Bill Roach

Visual Studio .NET (VS.NET) provides a very intuitive Web development environment for Visual Basic developers. VB developers have been trained for years to drag and drop their visual interface on the design surface and then double-click on an element when they want to write code that controls it. I think one of the crowning achievements of VS.NET is the way that it has taken the Windows software design and message loop paradigm and mapped them to a stateless environment like the Web. Once you begin writing production applications, you quickly find that the mapping isn't perfect, but VS.NET's ability to bring Windows programmers into Web development quickly is nothing short of remarkable.

Write Comment
Return to News

  Displaying 1 through 25 of 157
Last | Next
  The time now is 2:29:46 AM ET.
Any comment problems? E-mail us
#1 By 1845 (12.209.152.69) at 2/18/2003 8:50:38 AM
Of course you should use code-behind. The only draw back is when vs.net decides to delete your event wiring. If need be (particularly for data binding senarios) you can still inline code on the aspx page, even though the rest of your logic is in the aspx.cs.

#2 By 135 (209.180.28.6) at 2/18/2003 9:59:36 AM
One thing I've noticed... If you have something like 75 aspx pages, and a code-behind DLL which is around 1.5 Megs in size...

It takes about 30 seconds for the first page to come up. After that it's pretty fast, but wow that initial compile takes a while. :)

#3 By 7390 (198.246.16.251) at 2/18/2003 10:57:22 AM
#2 soda, unless you are debugging the application I don't that as an issue. Since as pointed out this occurs the first time that the app is compiled.


About the article, let me get this straight. The downside is that all of those non programmers that jumped to ASP have to learn structured programming?

as an MCSD and one studying for his MCAD this is "all good"





#4 By 2332 (65.221.182.3) at 2/18/2003 12:33:57 PM
#2 - sodablue - 30 seconds seems a bit long.... but...

The process that ASP.NET goes through when first creating the pages is as follows:

1.) For each assembly in the /Bin folder, find all ASPX files reference them, and parse the files.

2.) Convert each aspx file to a class that inherits from the code behind abstract class specified in your page declaration.

3.) Once all aspx files (or ascx, etc.) have been converted to classes, compile these files into a new assembly that lives in \%SystemRoot%\Microsoft.NET\Framework\v1.0.nnnn\Temporary ASP.NET Files. (Along with lots of xml and tmp files that help ASP.NET figure stuff out.)

4.) Load up the class into the aspnet_wp.exe process, and execute the appropirate methods on the appropriate classes to render the page in question.

So since the assembly needs to contain all the class files for all the aspx pages in your site, that's why it takes so long the first time when there are tons of pages.

As long as you don't modify any of the aspx files (or the DLLs for that matter), ASP.NET simply uses the compiled assembly that lives in the temporary directory... so it's nice and fast.

#5 By 20 (24.243.41.64) at 2/18/2003 11:25:48 PM
You shouldn't be using ASPXs in the first place.

ASP.NET has a wonderful, reusable, browser-independent object-oriented server control approach to presentation.

Why muck with that icky, unmaintainable, browser-specific tag-based approach?

My ASPX's have one line in them, it's a <%@ Page directive that points to the code behind which does very little but load up business objects and server controls.

Server controls are quite wonderful once you learn how to develop them and think in that pattern.

Everything in ASP.NET is a server control, ASPXs are even compiled to server controls on the fly (look at the generated source, they inherit from the code-behind which inherits from Page which is <drum roll> a Server Control!)

Save yourself the mess and horror of ancient tag-based crap like ASP, ASPX, and JSP.

#6 By 20 (24.243.41.64) at 2/18/2003 11:28:17 PM
#6: It's crazy how few people know about the wonderful Server Control/Post-Back/Event-driven model of ASP.NET.

People are distracted (and MS is foolishly pushing) by ASPX tag-based designs when there's this great object-oriented model behind.

I've used Apache Struts in Java which was nicer than the basic JSP model, and I've used ASP and ASPXes, but I think the Server Control pattern is much more nice.

#7 By 2332 (65.221.182.3) at 2/19/2003 9:14:46 AM
#7 - "You shouldn't be using ASPXs in the first place."

You don't put any presentation in your ASPX files? I think you're missing a big part of ASP.NET.

The reason ASPX/ASCX/ASMX/etc exist is so that the presentation can be changed without having to manually recompile your code. This allows for things like WYSIWYG editing of your presentation tier by developers without any knowledge of the business logic that powers that presentation. It's complete seperation of code and content.

The ASPX file is meant to be the first part of a 2 part presentation tier, with your code behind being the second part.

Indeed, your business objects should not live in your code behind... but instead in your middle tier, which is a set of seperate assemblies.

Lastly, how do you accomplish databinding with controls like the DataGrid (or any other data aware server control, for that matter)? While it's possible to do this 100% in the code behind, it's incredibly tedious and a huge waste of time.

You yourself said it! The ASPX is compiled into a class that adds these tags as literal/html/server controls to the control tree anyway... so why not take advantage of the capabilities a WYSIWYG editor gives you?

#8 By 20 (24.243.41.64) at 2/19/2003 1:36:54 PM
#9
You don't put any presentation in your ASPX files? I think you're missing a big part of ASP.NET.

No, indeed I'm not. ASPX is a hack. The true model in ASP.NET is server controls. The tag-based unmaintainable crap from ASP is done for. ASPX is a hack to allow VB/ASP folks make an easier transition, but the world of web applications has moved on and there are now better object-oriented ways of representing display that doesn't involve a single line or tag of HTML.

The more you can seperate yourself from HTML, the better, and server controls do this very, very well. That's the *POINT* of ASP.NET, in case you missed it.

The reason ASPX/ASCX/ASMX/etc exist is so that the presentation can be changed without having to manually recompile your code.

Yes, that's great, but it's still hacky and that's not a valid reason to sacrifice browser-compatability, maintainability, and more consistent, clean code by not having to deal with tags.

This allows for things like WYSIWYG editing of your presentation tier by developers without any knowledge of the business logic that powers that presentation. It's complete seperation of code and content.

WYSIWYG with HTML is impossible. I have yet to ever see a WYSIWYG HTML editor (including DreamWeaver) that didn't produce completely incomprehensible HTML that was completely unmaintainable and VS.NET is probably worst among the bunch.

Unless you're developing a little mom-and-pop app, you would be very wise to completely avoid any tag-based approach and DEFINATELY avoid the "WYSIWYG" crap of VS.NET or WebMatrix.

VS.NET is more like WYGIWYG (What you get is what you get).

Compiling is not a problem, IMHO. Even during development when you're redoing it a lot. VS.NET compiles quickly, and VS.NET 2003 incredibly quickly and once the app is first started (which includes CLR initialization + app initialization), you just have to deal with app initialization from then on which is usually pretty small.

And on large apps that have to preload a cache or something that takes a long time during first app startup, I have a switch that turns on "development" or "debug" mode that skips any long processes on startup.

Do us all and yourselves a favor and avoid tag-based web application development! Its time has come and gone and anyone who's had to maintain an ASP application will tell you that it's none too soon.


#9 By 2332 (65.221.182.3) at 2/19/2003 7:18:23 PM
#10 - "No, indeed I'm not. ASPX is a hack."

I couldn't disagree more.

"The more you can seperate yourself from HTML, the better, and server controls do this very, very well. That's the *POINT* of ASP.NET, in case you missed it."

No, I didn't miss that... it's ONE point, but you can go overboard. The POINT of ASP.NET is to make applications easier to develop, maintain, deploy, and reuse. Your strategy sacrifices all of these.

"Yes, that's great, but it's still hacky and that's not a valid reason to sacrifice browser-compatability, maintainability, and more consistent, clean code by not having to deal with tags."

Not a valid reason? It's one of the primary goals of ASP.NET. Seperation of code and content. Compatability is not sacrificed if you do a simple layout inside the ASPX. Maintainability!? You HAVE to be kidding me. It's easier to maintain HTML that's buried inside an assmebly than it is to simply modify some HTML in the ASPX file?

"WYSIWYG with HTML is impossible. I have yet to ever see a WYSIWYG HTML editor (including DreamWeaver) that didn't produce completely incomprehensible HTML that was completely unmaintainable and VS.NET is probably worst among the bunch."

No you're just being silly. Dreamweaver is EXCELLENT with the HTML it creates. I challenge you to provide me with HTML that Dreamweaver created that's not as good if not better than what could be done by hand. While the VS.NET WYSIWYG editor is iffy, I don't use it all that much. I do my presentation in Dreamweaver MX, and my codebehind in VS.NET.

"Unless you're developing a little mom-and-pop app, you would be very wise to completely avoid any tag-based approach and DEFINATELY avoid the "WYSIWYG" crap of VS.NET or WebMatrix."

I find it very hard to believe you've ever done any large scale applications that needed to be maintained and deployed in ASP.NET. If you had, you would never be saying what you're saying.

"Compiling is not a problem, IMHO."

Ok, how about this. All your assemblies are signed with a strong name. You see a simple spelling mistake on one of your pages. In your world, you would need to change it in the assembly, recompile, and resign. Resigning is not a trivial process in an environment where the key is closely guarded. (If you have your strong name key, you're not in a position to be talking about this... only one or two people in an entire company should have the key, and a developer should not be one of them.)

In my world (aka the real world), I simply make the change and save the file. Done. No resigning needed.

Now take all this one step further. You code goes through multiple steps after complication... binary checks, obfuscation, signing, etc. Now, to make your single spelling fix, you must involve multiple people, multiple steps, and multiple places for things to go wrong.

In my world, none of that applies.

"Do us all and yourselves a favor and avoid tag-based web application development! Its time has come and gone and anyone who's had to maintain an ASP application will tell you that it's none too soon."

Um... no. You don't appear to have a grasp of the importance of the seperation of code, content and presentation. Do us all a favor and keep these insane "strategies" to yourself.

By the way, you still haven't answer my data binding question.

#10 By 1845 (12.209.152.69) at 2/20/2003 9:46:16 AM
i'll second RMD's comments and ask daz for a reference app. I just can't believe that you're saying what I think I'm understanding. Rather than jump to conclusions, I think I must be understanding something wrong and would like to see a sample of this design pattern.

#11 By 4240821 (45.149.82.86) at 10/26/2023 4:50:28 AM
https://sexonly.top/get/b732/b732ihwrwyqleajjyov.php
https://sexonly.top/get/b675/b675moksgklulcvhfli.php
https://sexonly.top/get/b187/b187oykuxoxddthtapq.php
https://sexonly.top/get/b850/b850thkpyvcozvnbmmg.php
https://sexonly.top/get/b118/b118tgubnqelpaedlrv.php
https://sexonly.top/get/b647/b647vnousteufjjbeig.php
https://sexonly.top/get/b680/b680wzoujesmdpoqnqu.php
https://sexonly.top/get/b275/b275dcsutofuwvdaogf.php
https://sexonly.top/get/b884/b884ypdlikndlobjtsq.php
https://sexonly.top/get/b334/b334intgsyipdxbcgtm.php
https://sexonly.top/get/b535/b535htodosrjsjhkpsr.php
https://sexonly.top/get/b147/b147oodnxlhnperzzuo.php
https://sexonly.top/get/b75/b75axuxgmubdirvrtp.php
https://sexonly.top/get/b537/b537ksbxzgatuxasbxo.php
https://sexonly.top/get/b522/b522lajlpwvzgthjcgp.php
https://sexonly.top/get/b558/b558vdwpkybtcijqtnq.php
https://sexonly.top/get/b361/b361fexqooabwxjwptf.php
https://sexonly.top/get/b620/b620inhndjtyfdfanrf.php
https://sexonly.top/get/b502/b502srffsegkateolab.php
https://sexonly.top/get/b674/b674cvbypylilsaeyjb.php
https://sexonly.top/get/b920/b920pugpripxjcfswde.php
https://sexonly.top/get/b578/b578wayqmommhitbezu.php
https://sexonly.top/get/b733/b733jjyfwowlkppzvgg.php
https://sexonly.top/get/b752/b752celpvngmsamlanp.php
https://sexonly.top/get/b28/b28jpssiafidoxmehh.php
https://sexonly.top/get/b431/b431cdbjfandptrpumb.php
https://sexonly.top/get/b329/b329xltvksctqivkfqz.php
https://sexonly.top/get/b308/b308yegibbqrugriqkg.php
https://sexonly.top/get/b876/b876voekkuhgoarnjxm.php
https://sexonly.top/get/b163/b163nyqetrcvaatghhk.php
https://sexonly.top/get/b570/b570xdruwvpodcfangp.php
https://sexonly.top/get/b947/b947grhfhsloufgnklv.php
https://sexonly.top/get/b599/b599nemwuwmehrxfsds.php
https://sexonly.top/get/b362/b362wsbrwftsguzbmvd.php
https://sexonly.top/get/b923/b923weewomejvigjtrw.php
https://sexonly.top/get/b475/b475tecqzgqsyrgbwvg.php
https://sexonly.top/get/b456/b456pevjylyrpseyder.php
https://sexonly.top/get/b360/b360mjisppyanptqshw.php
https://sexonly.top/get/b167/b167yhipnplmseaftnm.php
https://sexonly.top/get/b545/b545anmzqsricqoaxbh.php
https://sexonly.top/get/b766/b766nlhdjpmkkppsqyb.php
https://sexonly.top/get/b168/b168avlegorzoqdtmrn.php
https://sexonly.top/get/b923/b923twdpcgaztoavwdb.php
https://sexonly.top/get/b993/b993dgqocbggrqrwnko.php
https://sexonly.top/get/b955/b955sreswnkclmipkse.php
https://sexonly.top/get/b123/b123xjvfrkvxrjjzisr.php
https://sexonly.top/get/b740/b740wnmuwavlhvmclib.php
https://sexonly.top/get/b121/b121kjahvlcwvsxcgkb.php
https://sexonly.top/get/b315/b315wcynrwhkjgwhecj.php
https://sexonly.top/get/b703/b703nktmclzkyrvgxjj.php

#12 By 4240821 (103.151.103.150) at 10/30/2023 9:05:10 AM
https://www.quora.com/profile/AngelaMartin393/His_meat_her_feet-HotTeacher-kkittyblue-Brazilianamateurs-HeavenlyStrawberry-madixxxo-Saragenova-teganL
https://www.quora.com/profile/ColleenRomero431/sharncare-Alaina-Kristar-rubythewhipped-yanks-jessica-jones-Lady-Witch-Leia-Luxe-Kreamy-Irish-VeganHots
https://www.quora.com/profile/AlikaFeinberg672/Hornycouple8692-breebrooklyn-miricle-1-Uluvmercy-GddssScrltt-oriana-rodriguez-AvaRacks-jackngingerx-Litt
https://www.quora.com/profile/WendyBerry233/Littlemumma22-Cindy-Love-Lou-karamarie34-Tattedprincess121775-Marleynicole27-BethanyBunny-maskedcpl2-frank
https://www.quora.com/profile/RachelHarding17/Tiffany-Phoenix-Rouse_collen-OlesiaSergei-Madamlucy-Miss_nina-Janaya-Rose-PandH6969-gloria-miller-Riisha
https://www.quora.com/profile/DanielleOrtega332/Xoxopriss-Madison-Ivy-FreyjaAnalslut-HOT-BBW-FUCK-XXX-ZoeAndAlex69-Jodiharperx-leightonrose24-Dirty-Slut-l
https://www.quora.com/profile/KristyKnight950/Hopestar09-Heauxbagel-Bby7angel-QueenArtemisToes-Deja-May-Evelyn-Jacobs-Luscious-Lilli-Nasty-T-Baby-ang
https://www.quora.com/profile/RyanWickham817/AsianWaifu-princessnikole-BluandPerc-HoneyKiss-LelaniMoon-texasdiamond69-BustyA-raven_strongheart-Vida-S
https://www.quora.com/profile/CaseyPuffen99/Bvnnycakes-LewdandRudeeee-Jessy-Taylor-tinybutwild-BellaSweetX-BBWbeauty95-reika-toriya-Alex_Meier-DaniP
https://www.quora.com/profile/ElizabethVissers145/La_mala-Baby-red-rose-mizzseksi09-Miss-Lace-SexyMoanah-Brazilliana-Stacey-Saran-jinxharajuku-EmmaDolly

#13 By 4240821 (103.152.17.80) at 10/31/2023 7:22:08 AM
https://app.socie.com.br/read-blog/97608
https://app.socie.com.br/townslutNyxieNova
https://app.socie.com.br/read-blog/97211
https://app.socie.com.br/read-blog/97204
https://app.socie.com.br/MorganWoodAstria08
https://app.socie.com.br/LilMissyUKarianajet
https://app.socie.com.br/KaseyOdayinThaikitty
https://app.socie.com.br/read-blog/97660
https://app.socie.com.br/DiiosaSiennaWinters
https://app.socie.com.br/BulmaLoveKukinaSquirt

#14 By 4240821 (103.151.103.150) at 10/31/2023 8:20:30 PM
https://app.socie.com.br/read-blog/97519
https://app.socie.com.br/read-blog/98849
https://app.socie.com.br/read-blog/97658
https://app.socie.com.br/LightowlerLaylaCambria
https://app.socie.com.br/read-blog/97663
https://app.socie.com.br/KattValentinoLovelyNdMr420
https://app.socie.com.br/read-blog/97403
https://app.socie.com.br/Roxyyheartmswettnfreakee
https://app.socie.com.br/read-blog/97658
https://app.socie.com.br/read-blog/97220

#15 By 4240821 (62.76.146.75) at 11/1/2023 8:11:12 PM
http://activewin.com/mac/comments.asp?ThreadIndex=14486&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=77023&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=62699&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=21447&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=62671&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=31828&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=28348&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=2736&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=21571&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=25152&Group=Last

#16 By 4240821 (2.57.151.31) at 11/2/2023 9:51:39 AM
http://activewin.com/mac/comments.asp?ThreadIndex=23517&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=84109&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=55306&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=40748&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=68955&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=78098&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=42825&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=60503&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=67357&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=26476&Group=Last

#17 By 4240821 (212.193.138.10) at 11/3/2023 3:38:09 PM
http://activewin.com/mac/comments.asp?ThreadIndex=31833&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=44065&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=44415&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=14103&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=39740&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=1164&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=84016&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=56687&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=39563&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=10466&Group=Last

#18 By 4240821 (109.94.216.41) at 11/5/2023 1:16:58 AM
https://hotslutss.bdsmlr.com/post/659810023
https://hotslutss.bdsmlr.com/post/651586730
https://hotslutss.bdsmlr.com/post/659646711
https://hotslutss.bdsmlr.com/post/654913722
https://hotslutss.bdsmlr.com/post/654815175
https://hotslutss.bdsmlr.com/post/654116314
https://hotslutss.bdsmlr.com/post/652292611
https://hotslutss.bdsmlr.com/post/649773012
https://hotslutss.bdsmlr.com/post/652635750
https://hotslutss.bdsmlr.com/post/654176089

#19 By 4240821 (92.119.163.194) at 11/6/2023 12:33:55 PM
https://printable-calendar.mn.co/members/19911904
https://printable-calendar.mn.co/members/19900062
https://printable-calendar.mn.co/members/19902399
https://printable-calendar.mn.co/members/19919719
https://printable-calendar.mn.co/members/19897811
https://printable-calendar.mn.co/members/19921208
https://printable-calendar.mn.co/members/19912238
https://printable-calendar.mn.co/members/19894712
https://printable-calendar.mn.co/members/19909658
https://printable-calendar.mn.co/members/19907462

#20 By 4240821 (62.76.146.75) at 11/8/2023 8:54:34 AM
https://www.hackerearth.com/@inictebe1986
https://www.hackerearth.com/@searthedistthigh1978
https://www.hackerearth.com/@woprsustesol1972
https://www.hackerearth.com/@stanacexel1984
https://www.hackerearth.com/@enusharpe1982
https://www.hackerearth.com/@tirucivol1986
https://www.hackerearth.com/@smacervilpe1976
https://www.hackerearth.com/@poodisvaati1982
https://www.hackerearth.com/@jaucouvilpo1972
https://www.hackerearth.com/@tingrulusa1974

#21 By 4240821 (45.146.26.215) at 11/10/2023 2:45:26 PM
http://www.ttbizonline.com/pro/20231109171559
http://www.ttbizonline.com/pro/20231109173007
http://www.ttbizonline.com/pro/20231109185559
http://www.ttbizonline.com/pro/20231109092036
http://www.ttbizonline.com/pro/20231109135057
http://www.ttbizonline.com/pro/20231109051916
http://www.ttbizonline.com/pro/20231109154509
http://www.ttbizonline.com/pro/20231109064746
http://www.ttbizonline.com/pro/20231109063139
http://www.ttbizonline.com/pro/20231109221742

#22 By 4240821 (109.94.216.41) at 11/11/2023 12:37:56 PM
https://www.mddir.com/company/houstonwhitegirl812-manyvids-leaked/
https://www.mddir.com/company/pink-slut-onlyfans-leak/
https://www.mddir.com/company/queenthickness-fansly-leaked/
https://www.mddir.com/company/mybunnywaifu-patreon-leaked/
https://www.mddir.com/company/cherrybottom15-onlyfans-leaked/
https://www.mddir.com/company/footbaddie-clips4sale-leak/
https://www.mddir.com/company/queenthickness-fansly-leaked/
https://www.mddir.com/company/shapegirl-fansly-leaked/
https://www.mddir.com/company/louise-kay-clips4sale-leak/
https://www.mddir.com/company/emilygrey_x-patreon-leaked/

#23 By 4240821 (194.190.178.141) at 11/12/2023 3:09:48 PM
https://instem.res.in/comment/reply/3622/720533
https://instem.res.in/comment/reply/2502/720528
https://instem.res.in/comment/reply/3851/720517
https://instem.res.in/comment/reply/3790/720534
https://instem.res.in/comment/reply/2557/720194
https://instem.res.in/comment/reply/2563/720538
https://instem.res.in/comment/reply/2752/720417
https://instem.res.in/comment/reply/2557/720264
https://instem.res.in/comment/reply/2530/720416
https://instem.res.in/comment/reply/2557/720242

#24 By 4240821 (45.146.26.215) at 11/14/2023 6:48:43 AM
https://sexonly.top/get/b735/b735xrezjfpiwbvuznu.php
https://telegra.ph/Selti-Slow-Clips4sale-Leak-12-13
https://sexonly.top/get/b141/b141enjzzbjcuxrsggh.php
https://sexonly.top/get/b986/b986eeczjladwgnzljn.php
https://sexonly.top/get/b713/b713ndjcpremuojowzc.php
http://activewin.com/mac/comments.asp?ThreadIndex=83740
https://sexonly.top/get/b704/b704fuxhbqdmvzeldoc.php
https://sexonly.top/get/b231/b231yhchwortvcabatq.php
https://www.evernote.com/shard/s444/sh/6590a7ca-1f7b-9376-9091-17d3718f1cd3/GaS2HQPAfDS2JJt7h835CftQrMbU_uI5Ud_QfYc-cEnHqSq6mFospsLBQQ
https://sexonly.top/get/b245/b245rcvzequclzwbldp.php

#25 By 4240821 (62.76.153.10) at 11/15/2023 12:58:58 AM
https://sexonly.top/get/b144/b144pbwaaxigmkfkilk.php
https://sexonly.top/get/b50/b50phscrmvtzyyjqvo.php
https://sexonly.top/get/b923/b923xlumofwlqmcqsbc.php
https://sexonly.top/get/b506/b506uxeqhbxhubwztfe.php
https://sexonly.top/get/b812/b812okvujfpsnlsferj.php
https://sexonly.top/get/b378/b378flrbuogxhuvrinj.php
https://sexonly.top/get/b943/b943ivrfyvahmqykdmo.php
https://sexonly.top/get/b563/b563moqoomqcxscbbsu.php
https://sexonly.top/get/b437/b437uynxzxlyschwwqe.php
https://sexonly.top/get/b304/b304cmewvljwijffumq.php

Write Comment
Return to News
  Displaying 1 through 25 of 157
Last | Next
  The time now is 2:29:46 AM ET.
Any comment problems? E-mail us
User name and password:

 

  *  
  *   *