Recently changed documents

asp.net column gridview widths

More documents like this are at:  CS-dotnet

18-May-07

asp.net column gridview widths

asp.net populating, working with datatable objects

More documents like this are at:  CS-dotnet

18-May-07

asp.net populating, working with datatable objects

How does data binding work in a templated item

More documents like this are at:  CS-dotnet

18-May-07

How does data binding work in a templated item

asp.net gridview empty datasource display header footer

More documents like this are at:  CS-dotnet

18-May-07

asp.net dataview empty datasource display header footer

asp.net: how to submit a web fom

More documents like this are at:  CS-dotnet

17-May-07

asp.net: how to submit a web fom

asp.net: Viewstate and dynamically added controls

More documents like this are at:  CS-dotnet

17-May-07

asp.net: Viewstate and dynamically added controls

How can I retrieve the form elements on serverside in dotnet

asp.net what happens to the view state of data variables on the page?

Annotated asp.net 101 for the smarts

More documents like this are at:  CS-dotnet

16-May-07

Introduction

For an experienced html web programmer it shoudl be really quick to start writing code in any framework as the concepts are similar. This article will give you a quick start to start developing web pages while highlighting the important elements with out fluff. This information is distilled from a number of web sources and also books.

Prerequisites

it is assumed that you are familiar with the general idea of asp.net where html controls are represented as server side control objects. The web page with an extension of .aspx will contain the placement and configuration of these control. The codebehind file contains the manipulating logic for these controls.

This exercise

The goal of this exercise is to display the output of a select statement in a data grid. Make one of the columns hyperlinked so that one can see the details in a separate web page. The deliverables are two aspx pages with their respective code behind files.

what's up with asp.net isValid function

More documents like this are at:  CS-dotnet

16-May-07

what's up with asp.net isValid function

data binding samples

More documents like this are at:  CS-dotnet

15-May-07

data binding samples

Draft: Neither for fear nor for favor

More documents like this are at:  Shells: My Writes

12-May-07

Neither for fear nor for favor
should I seek Faith

Neither for loss nor for gain
Should I seek Truth

For things that are not bound to Earth
Stand in Divine contrast

Irrespective of my Faith,
For the sake of Truth on its own,
Do I not offer shoulder for another
Not for favor on Earth or in Heaven.
Due to such I am Human.

To be strong or great is to be humble
To be stronger or greater is to be humbler
Is it not then by ratiocination,
To seek the Strongest or Greatest on Earth or in Heaven
Should you not seek the humblest?

So, with humility
my conduct, I pray, be colored

So, with humility,
And not in righteousness,
Truth on my journey, I pray, be sought

Sample code for html encoding a string

More documents like this are at:  CS-Java

11-May-07


   public static String htmlEncode(String inHtmlString)
   {
	   String fromCharString="<>&";
	   String[] toStringArray = { "&lt;", "&gt;", "&amp;" };
	   return encode(inHtmlString, fromCharString, toStringArray);
   }

Escape Special Characters from Java Best Practices

How do I check type in c#

More documents like this are at:  CS-dotnet

8-May-07


class a{};
object o;
if (o is a)
{
do something;
}

is it possible to add an edit field to a datacontrolfield

More documents like this are at:  CS-dotnet

8-May-07

is it possible to add an edit field to a datacontrolfield

How can I look up a class ref quickly in dotnet

More documents like this are at:  CS-dotnet

8-May-07

How can I look up a class ref quickly in dotnet

The Lanyard by Billy Collins

More documents like this are at:  Humanities Current

7-May-07

http://home.cinci.rr.com/iwishiwerebuffy/poetry.htm

A few lines here...

She nursed me in many a sick room, 
lifted teaspoons of medicine to my lips, 
set cold facecloths on my forehead 
then led me out into the airy light 
and taught me to walk and swim and I in turn presented her with a lanyard. 
"Here are thousands of meals" she said, 
"and here is clothing and a good education." 
"And here is your lanyard," I replied, 
"which I made with a little help from a counselor." 
"Here is a breathing body and a beating heart, 
strong legs, bones and teeth and two clear eyes to read the world." she whispered. 
"And here," I said, "is the lanyard I made at camp." 
"And here," I wish to say to her now, 
"is a smaller gift. Not the archaic truth, 
that you can never repay your mother, 
but the rueful admission that when she took the two-toned lanyard from my hands, 
I was as sure as a boy could be 
that this useless worthless thing I wove out of boredom 
would be enough to make us even

Incredible illusions

More documents like this are at:  Humanities Current

7-May-07

dotnet app_code folder

How to call base class and this constructors in c#?

More documents like this are at:  CS-dotnet

1-May-07

class a
{
    a():base(){}
    a(string b):this(){}
    a(int a): this("hello") {}
}

Working with c# strings?

More documents like this are at:  CS-dotnet

1-May-07

c# strings
Equivalence
Splitting

adding template columns

More documents like this are at:  CS-dotnet

27-Apr-07

adding template columns

book: The ballad of the white horse by G.K.Chesterton, 1911

More documents like this are at:  Books

21-Apr-07

Before the gods that made the gods
Had seen their sunrise pass,
The White Horse of the White Horse Vale
Was cut out of the grass.

Before the gods that made the gods
Had drunk at dawn their fill,
The White Horse of the White Horse Vale
Was hoary on the hill.

Age beyond age on British land,
Aeons on aeons gone,
Was peace and war in western hills,
And the White Horse looked on.

For the White Horse knew England
When there was none to know;
He saw the first oar break or bend,
He saw heaven fall and the world end,
O God, how long ago.

For the end of the world was long ago,
And all we dwell to-day
As children of some second birth,
Like a strange people left on earth
After a judgment day.

Read it online

wikipedia reference

oracle 10g

More documents like this are at:  CS-dotnet

21-Apr-07

oracle 10g

where does console output go for asp.net web applications

More documents like this are at:  CS-dotnet

21-Apr-07

where does console output go for asp.net web applications

How can I add an existing project to a website solution

More documents like this are at:  CS-dotnet

21-Apr-07

How can I add an existing project to a website solution

How can I use hyperlinkfield in dataview

More documents like this are at:  CS-dotnet

21-Apr-07

How can I use hyperlinkfield in dataview

what is the Data Binding Syntax in ASP.NET 2.0

More documents like this are at:  CS-dotnet

21-Apr-07

what is the Data Binding Syntax in ASP.NET 2.0

How come I dont see web.config in visual studio 2005

More documents like this are at:  CS-dotnet

20-Apr-07

How come I dont see web.config in visual studio 2005

How best to create a solution for web site projects

More documents like this are at:  CS-dotnet

18-Apr-07

How best to create a solution for web site projects