2/19/2006

Advertising your blog

Filed under: General — russell @ 2:55 pm

Heres a link to an overview on how to route more traffic to your blog.

http://help.blogger.com/bin/answer.py?answer=1060
http://weblogs.about.com/cs/blogpromotions/a/promoteblog.htm


2/8/2006

List of torrent sites organized by category

Filed under: General — russell @ 7:30 pm

http://web-of-knowledge.blogspot.com/2006/02/torrents-sites-general-httpweb1.html


1/31/2006

Treo 700w and WM5 Development

Filed under: General — russell @ 11:27 pm

I have been playing with my new Treo 700W for the past month and I really like it. However it might be nice to build my own applications for it. MS has put everything need all in one place:

http://www.microsoft.com/downloads/details.aspx?familyid=3baa5b7d-04c1-4ec2-83dc-61b21ec5fe57&displaylang=en


Viewstate Analyzer

Filed under: General — russell @ 11:23 pm

Interesting ASP.Net 2.0 application. Reverse engineers the viewstate.

http://lab.aspitalia.com/26/ViewStateAnalyzer200.aspx#eng


1/11/2006

Good article on using JAVAScript to maintain scroll position after post back

Filed under: General — russell @ 11:19 am

check it out here:

http://aspnet.4guysfromrolla.com/articles/111704-1.aspx


12/29/2005

Create Jet database on the fly

Filed under: General — russell @ 1:32 am

I need to create a Jet Database on the fly so I can then run DTS to dump SQL Server data into it. Heres the code to do it after the jump
(more...)


More ASP.Net tricks

Filed under: General — russell @ 1:05 am

The developer.com article had some really nice stuff thanks to Karl Moore. I have clipped parts of the article and these can be found after the jump. For the full articles you can goto:
http://www.developer.com/net/asp/article.php/1594521
(more...)


Changing the title of aspx page in ASP.Net

Filed under: General — russell @ 12:44 am

I have looked for this snippet for quite a while and have used labels and such to mimick this. Developer.com posted a good article on .net tricks. This was one of them:

Three Steps to Changing Your Page Title in Code!
If I asked you to change the title of your Web form, you'd be forgiven for looking for a "title" or "text" property somewhere. The problem is, that mysterious property doesn't exist: Microsoft forgot to put it in. If you want to change your page title programmatically, you have to do it yourself. Here's how.

Firstly, switch to the HTML view on your Web form. Near the top of your page, you'll see the title tag, looking something like

Code:
<title>WebForm1</title>

Replace this with

Code:
<title runat="server" id="PageTitle"></title> 

Here, you're creating a title tag that runs on the server and has an ID, meaning you can manipulate it in code.

Next, switch back to design mode; then, open up the code window behind your form. At the top of your page, under the Inherits line, add the following line of code. This declares the server title tag you've just added:

Code:
Protected PageTitle _
          As System.Web.UI.HtmlControls.HtmlGenericControl

Our third and final step involves changing the page text. Behind the Load event of your page, or in response to some similar event, set the InnerText property of the PageTitle tag to your new page title. Here's my sample code:

Code:
PageTitle.InnerText = "Welcome! - Last Updated 20/05/2003"

And that's it—one line of code and your page title has changed.


12/27/2005

Modeling tools

Filed under: General — russell @ 3:34 pm

I use Embarcadero to do data modeling. Today I had to deal with building a database (150+ tables) without a modeling tool... Ummmm and how will this be maintained.... So I started looking for inexpensive data modeling and generation tools... Here's the list:

http://www.databaseanswers.com/modelling_tools.htm
http://www.devarchive.com/u288.html
http://www.devarchive.com/u277.html

More after the Jump
(more...)


12/17/2005

PDFs and Web Reporting

Filed under: General — russell @ 1:05 pm

I work on alot of projects and web printing is always a hassle and often people dont want to pay more for a commercial PDF creator. Here is a list of Opensource PDF controls/assemblies:


« Previous PageNext Page »