.NET Hore....

simple beginner .NET geek
See also: Other Geeks@INDC

Browse by Tags

All Tags » ASP .NET (RSS)
Sorry, but there are no more tags available to filter with.
So, ATLAS will be dead soon....
So there won't be any ATLAS at last. Is ATLAS going to be dead ? Or MS just won't support it anymore ? Of course not, read it all here , where Scott Gu explained it all. And, for sure, whether its name ATLAS or not, i'm still one of newbie AJAXIAN !!...
Posted: Sep 13 2006, 07:52 PM by soetam | with 1 comment(s)
Filed under:
Finally, My own original ATLAS powered site.....
Long weekend, and one whole day ( with no sleep at all ), also 10 hours of coding ( minus 2 hours of watching first match of premiership 2006, another 1 hours of midnight dirty comedy at Trans TV ), resulting a new, my own original ATLAS powered site...
Posted: Aug 22 2006, 08:51 PM by soetam | with 1 comment(s)
Filed under:
Web 2.0 seminar
Busy day !! Going to talk this morning about Web 2.0 and ATLAS implementation at Hi-Tech Mall, 22nd August 2006. With my students from MUGI STIKOM. And then, going to talk later at noon with Mr. Nadjib from KPDE Surabaya at Kosmonita, about e-gov at Surabaya...
Posted: Aug 22 2006, 07:47 PM by soetam | with no comments
Filed under:
Let's Learn ATLAS !!
Just share what I already download and make it in a public folder. All of them are free to download at here Share this post: | | | |
Posted: Jun 15 2006, 11:12 PM by soetam | with 1 comment(s)
Filed under:
Creating Thumbnail Images On The Fly
How to create thumbnail image on the fly and keep the aspect ratio : Dim imgsource As System.Drawing.Image = _ System.Drawing.Image. _ FromFile(Server.MapPath _ ("~/images/") & ximg) Dim img As System.Drawing.Image img = New System.Drawing.Bitmap...
Posted: Jun 01 2006, 11:00 PM by soetam | with no comments
Filed under:
RSS Creator
Simple class to create RSS feed. Credit to Bipin Joshi. Further code at here Share this post: | | | |
Posted: May 10 2006, 08:16 PM by soetam | with no comments
Filed under:
Graphical Site Counter
Simple graphical site counter using GDI+. Further code at here Share this post: | | | |
Posted: May 10 2006, 08:00 PM by soetam | with no comments
Filed under:
Publishing Your Website
One most important thing ( and forgotten thing ) before you publish your ASP .NET 2.0 website into production server, set it first to final release !!!! Just like Scott Guthrie said, dont put true value in your configuration debug while you wanna publish...
Posted: May 06 2006, 06:47 PM by soetam | with no comments
Filed under:
Atlas Contest
So, Atlas March CTP already out of the box ! And, there is new UI at their site, and also a new contest available ! Share this post: | | | |
Posted: Mar 21 2006, 07:54 PM by soetam | with no comments
Filed under:
Coming Up, Community in Touch ASP .NET 2.0 | Chapter 2 : Membership and Roles
Only available at Surabaya, Community in touch ASP .NET 2.0 Chapter 2 | Membership and Roles --- It's so easy to make your pages secure with almost zero code scenario ! --- Will be held at STIKOM Surabaya, Jl. Raya Kedung Baruk 98 Surabaya Auditorium...
Posted: Mar 07 2006, 03:59 AM by soetam | with no comments
Filed under:
ASP .NET 2.0 Simple Tricks ( VI )
Simple file upload with one fileupload control and one button provided : If FileUpload1.HasFile Then FileUpload1.SaveAs _ (Server.MapPath(".") & _ "\" & FileUpload1.FileName) Label2.Text = "File Size : " & _ Format(FileUpload1.PostedFile.ContentLength...
Posted: Mar 07 2006, 02:31 AM by soetam | with no comments
Filed under:
Oneliner tips ( part V )
Displaying client browser and version : Response.Write( "Browser : " & Request.Browser.Browser & " " & Request.Browser.Version) Share this post: | | | |
Posted: Mar 01 2006, 04:26 AM by soetam | with no comments
Filed under:
ASP .NET 2.0 Simple Tricks ( V )
How to get intellisense enabled in your web.config at VS 2005 : Remove this namespace in configuration section xmlns= http://schemas.microsoft.com/.NetConfiguration/v2.0 and get your intellisense..... Share this post: | | | |
Posted: Mar 01 2006, 03:20 AM by soetam | with no comments
Filed under:
ASP .NET 2.0 Simple Tricks ( IV )
How to receive variable or form filling from previous page without querystring : In first page, use server.transfer, ex : Server.Transfer( "secondpage.aspx" ) In second page, use previousPage , ex : Label1.Text = CType (PreviousPage.FindControl( "TextBox1...
Posted: Feb 24 2006, 08:29 PM by soetam | with 1 comment(s)
Filed under:
ASP .NET 2.0 Simple Tricks ( III )
Fill all textbox in page with empty string, you can also do the same tricks with other web server controls : Dim xForm As Control = _ Page.FindControl("form1") For Each ctl As Control _ In xForm.Controls If ctl.GetType().ToString(). _ Equals("System.Web...
Posted: Feb 24 2006, 04:19 AM by soetam | with no comments
Filed under:
More Posts Next page »