Browse by Tags
All Tags »
ASP .NET (
RSS)
Sorry, but there are no more tags available to filter with.
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 !!...
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...
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...
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: | | | |
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...
Simple class to create RSS feed. Credit to Bipin Joshi. Further code at here Share this post: | | | |
Simple graphical site counter using GDI+. Further code at here Share this post: | | | |
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...
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: | | | |
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...
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...
Displaying client browser and version : Response.Write( "Browser : " & Request.Browser.Browser & " " & Request.Browser.Version) Share this post: | | | |
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: | | | |
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...
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...
More Posts
Next page »