# Tuesday, March 15, 2005

Miroslaw Maslyk has sent this small tutorial on how to use iFused with the FCKEditor. Thank you very much Miro ;-)

1. Rename file FCKeditor\editor\dialog\fck_image.html to fck_image.aspx.

2. On the top this file (fck_image.aspx) add this code:

<%@ Page Language="C#" %>
<%@ Register TagPrefix="Uploader"
 namespace="StaticDust.Web.UI.Controls"
 assembly="StaticDust.Web.UI.Controls.UploadDialog" %>
<script runat="server">
protected void Page_Load(Object source, EventArgs e)
{
   
StaticDust.Web.UI.Controls.UploadDialogButton _u =
     new StaticDust.Web.UI.Controls.UploadDialogButton();
   
_u.UploadDirectory = "~/images";
   
_u.ReturnFunction = "SetUrl()";
   
btnBrowse.Attributes["OnClick"] =
     "javascript:" + _u.JavascriptLink; }
</script>

3. Find btnBrowse input html tag , add runat="server" attribute and close tag (/>)

4. Replace in files FCKEditor\FCKeditor\editor\js\fckeditorcode_ie_2.js and fckeditorcode_gecko_2.js all fck_image.html sentence to fck_image.aspx

ASP.NET | C# | Projects
Tuesday, March 15, 2005 11:50:32 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [27]  | 
# Wednesday, March 09, 2005
Wednesday, March 09, 2005 10:59:20 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [16]  | 
Take the quiz: "Which American City Are You?"

New York
You're competative, you like to take it straight to the fight. You gotta have it all or die trying.

via Peter; via Sam

Wednesday, March 09, 2005 10:23:07 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [17]  | 
# Thursday, February 17, 2005
Thursday, February 17, 2005 4:02:49 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [35]  | 
# Tuesday, February 15, 2005

Yesterday I arrived in Frankfurt with a delay of 2 hours (thanks to the Deutsche Bahn). Monday is Workshop day and so I just sat arround and did the same stuff that I would normally do in the office. I'm currently working on an ASP.NET project that uses v. 1.1 but will be converted to 2.0 with it's "Go-Live". So I need to make sure that I don't do things that will stand in the way in the next version.

Here are a few questions I'm currently asking myself:

  • Do i like the idea to save the properties of the Profile class in a ntext database column with the length of 6000?
  • Will i accept that i can only user MemberShip with MediumTrust or higher?

In germany we say: "Kommt Zeit, kommt Rat".

ASP.NET | C# | Projects | Security
Tuesday, February 15, 2005 4:43:23 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [40]  | 
# Thursday, February 10, 2005

Thursday, February 10, 2005 11:19:57 AM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [24]  | 
# Tuesday, February 01, 2005

I joined newtelligence® AG last year for a practical course, Clemens and i mentioned that in our blogs before. I had a wonderful time so far (and i'm sure it'll continue), nice collegues (i'll link only the bloggers Clemens, Joerg and Michael), new challenges and interesting task, talks and times.

Today it's official: From today on i'm a "Software Engineer" for newtelligence® AG.

Tuesday, February 01, 2005 5:06:33 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [27]  | 
# Sunday, January 30, 2005

[Dino Esposito] ...Introduced with ASP.NET 1.1, ViewStateUserKey is a string property on the Page class that only few developers admit to be familiar with. Why? Let's read what the documentation has to say about it.[...]

void Page_Init (object sender, EventArgs e) 
{ ViewStateUserKey = Session.SessionID; }

There will be a few more that are familiar with that now :-)

ASP.NET | C# | Security
Sunday, January 30, 2005 1:24:17 PM (W. Europe Standard Time, UTC+01:00)  #    Disclaimer  |  Comments [17]  |