Wely

wel = new Geeks();
See also: Other Geeks@INDC

June 2007 - Posts

Who do you looks like?
http://www.myheritage.com/FP/Company/tryFaceRecognition.php?collage=1
The AI is clever enough to recognize the location of your face in the photo you uploaded.
It compares with the artist Stick out tongue But i don't think the comparison result is accurate.
Hahaha....
Share this post: | | | |
Posted: Jun 26 2007, 03:12 PM by very_wel | with 2 comment(s)
Filed under:
Online Application for Lecturer
If you are interested to become a lecturer in Binus University, you can apply via an online application.
Yeah... this is my project Smile. I used some ajax and ajax control toolkit there.
Share this post: | | | |
Posted: Jun 26 2007, 09:43 AM by very_wel | with no comments
Filed under: , ,
Fulltime developer, parttime programming instructor
 I've been working in IS Dev Binus (aka ATL) for almost 1.5 years since I was at 6th semester. Now I've graduated and I applied as a part-time programming instructor at BinusCenter. It's quite tired that I have to work for about 12 or 13 hours a day (9-18 at office, 18 - 21 at BinusCenter). But for me, it's another challenge.

I decided to apply as an instructor because I believe that by teaching, we will improve the following skill:

  • Communication Skill.

Yeah, we will communicate to more people so it will of course improve our communication skill. Rather than being a developer, we spend most of time in front of a computer.

  • Interpersonal Skill.

Ex: Become more mature in handling something. We have to serve our audience, solve their problem, etc. Of course we will meet a lot of kinds of audience. Some of them are quite slow enough; we have to be more patient on them.

  • Leadership.

We are the leader of the class. We lead the class, the rhythm flows as our style.

  • Technical Skill.

If we are going to teach something to people, we have to master it well before. That's it; we are pushed to learn something more and more.

  • In fact, I believe there will be a lot.

 

I believe it is worth enough to exchange those skills with "tired". Smile

 

Being a developer is quite different to an instructor. But, of course my experience as developer helps me a lot to be a programming instructor.

Share this post: | | | |
ASP.NET AJAX UpdatePanel Compatibility
 I have tried using ASP.NET AJAX for few times. Few weeks ago, I use UpdatePanel along with DetailsView to view the details from GridView. One of the DetailsView consist a column for upload file (using FileUpload control). When I tried to upload it, the value became null.

 

Soon, Uncle google found me an article of UpdatePanel documentation. http://ajax.asp.net/docs/overview/UpdatePanelOverview.aspx

Controls that Are Not Compatible with UpdatePanel Controls

The following ASP.NET controls are not compatible with partial-page updates, and are therefore not supported inside an UpdatePanel control:

Controls that are incompatible with partial-page rendering can still be used on a page outside UpdatePanel controls. Additionally, in some cases you can use the controls in a specific way to make them compatible with partial-page updates. For example, you can use the Login, ChangePassword, or PasswordRecovery controls inside an UpdatePanel control if you can convert their contents to templates. (If you are using Visual Studio, in Design view you can convert the controls by using smart-tag menu commands such as Convert to Template or Customize Create User Step.) When you convert these controls into editable templates, the validation controls that are used in the control are defined declaratively by using markup in the page. To make the validators compatible with an UpdatePanel control, set the EnableClientScript property of the validators to false. This disables the client script that would ordinarily be used to perform validation in the browser. As a result, during an asynchronous postback, the validators perform validation on the server. However, because only the content of the UpdatePanel is refreshed, the validators can provide the kind of immediate feedback that is ordinarily provided by client script.

To use a FileUpload control inside an UpdatePanel control, set the postback control that submits the file to be a PostBackTrigger control for the panel.

All other controls work inside UpdatePanel controls. However, in some circumstances, a control might not work as expected inside an UpdatePanel control. These circumstances include the following:

Registering script by calling registration methods of the ClientScriptManager control.

Rendering script or markup directly during control rendering, such as by calling the Write(String) method.

If the control calls script registration methods of the ClientScriptManager control, you could use corresponding script registration methods of the ScriptManager control instead. In that case, the control can work inside an UpdatePanel control.

 

Hopefully that this post will help you if you meet this problem too. J

Share this post: | | | |
Posted: Jun 04 2007, 09:32 AM by very_wel | with 3 comment(s)
Filed under: , ,