Showing posts with label type. Show all posts
Showing posts with label type. Show all posts

Saturday, March 31, 2012

Set a custom object property in a user control

hi, i have a user control that have a property MyProp of type MyObject.

MyObject also have a property named Prop1;

I want to set Prop1 in the aspx.

For example

<User:MyControl id="control>

<MyProp Prop1="value" />

</User:MyControl>

and

public class MyObject

{

public string Prop1 {get; set;}

}

This code works but i can't go to Design View becouse contents isn't allowed between openin and closing tag of an user control)

Somebody have a solution? ( i don't ant to change my user Control to a server control)

thanks

You cant have content between opening and closing tags.

Your code should be like as below:

<User:MyControl id="control"

Prop1="value">

</User:MyControl>

Try this and let me know if any issues


thanks for your reply but i don't need to set a property of my control, i need to set some properties of an object returned by a property of my control and

i neither want to remap all this properties to some new properties of the control becouse are too match;

a better example is (some implementation details are hidden):

class User

{

public string Name { set; }

public string Surname {set;}

}

class UserView : UserControl

{

public User TargetUser {get;}

}

and in the page

<MyControls:UserView id="userView1">

<TargetUser Name="sam" Surname="foofoo" />

</MyControls:UserView>

This code works but i can't switch to DesignView becouse Visual Studio see contents into my control tags.

I want know if there's a way to set Name and Value property of internal User object into the aspx without problems with visual studio parser.


Set Boolean Property to Nothing

I need to set a public property of type boolean to nothing. Is this possible or will it always revert to false?

Thanks

You use the FCL(framework class library) 2.0 System.Nullable, try the link below for code sample from Microsoft using the TreeView control. Hope this helps.

http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.treenode.showcheckbox.aspx


I should have mentioned that I'm using 1.1

Good news bad news I found a code with Nullable Boolean but it is readonly. Try the link below for details. Hope this helps.

http://www.codeproject.com/vb/net/ReflectionDataBinding.asp


As far as i know the boolean type is a primitive type and can't be set to nothing/null. If you do set it to nothing/null it's value will be false. If you need more than 2 values (true/false), ie 3 values (null/true/false) then use another type like a smallint (0/1/2) or even an enum with 3 values. Bottom line the boolean type is intended for 2 values only: True or False.

Boolean in ANSI SQL is three valued the third value is null and in FCL(framework class library) 2.0 it is in System.Nullable as three valued, what I posted and the Dotnetnuke used reflction to create a read only property through DBNULL. I am a data person so I know when it was created and released last year.

http://blogs.msdn.com/somasegar/archive/2005/08/11/450640.aspx


Nearl all SQL implementations (including Sql Server and Oralce) don't have a Boolean datatype. A true boolean can only have two values - by definition you cannot have a 'tristate' boolean.

SQL99 has a special BOOLEAN data type with a range that includes only two values: TRUE and FALSE. Oracle, DB2, and Microsoft SQL Server don't have a BOOLEAN data type. (Or, to be more precise, DB2 has it, but for internal use only, i.e., you cannot declare a column of type BOOLEAN.) But the BOOLEAN data type can be easily simulated, for example by using a user-defined data type of type VARCHAR that only allows FALSE and TRUE for its values.source


Microsoft spent 10 billion dollars on only math in SQL Server 2005 the only thing not there is Time Interval and it is coming in a service pack because it was there till beta 2. Try the link below for three valued BIT in 2005. The .NET version is not because it uses a place holder.

http://msdn2.microsoft.com/en-us/library/ms177603.aspx


Caddre:

Boolean in ANSI SQL is three valued the third value is null and in FCL(framework class library) 2.0 it is in System.Nullable as three valued, what I posted and the Dotnetnuke used reflction to create a read only property through DBNULL. I am a data person so I know when it was created and released last year.

http://blogs.msdn.com/somasegar/archive/2005/08/11/450640.aspx

I don't think he is talking data from the DB, i think he is referring to a variable within the class.

in C# (.net 2.0) both of the examples bellow give a compile error:

bool x =null;bool x = System.Nullable;

and in VB.Net (.net 2.0) the example bellow makes the variable be false

dim x as boolean = nothing

Caddre:

Try the link below for three valued BIT in 2005.

http://msdn2.microsoft.com/en-us/library/ms177603.aspx

But it's desribed as "An integer data type that can take a value of 1, 0, or NULL". That isn't a boolean. A true boolean can only have two states.

Caddre:

Try the link below for three valued BIT in 2005.

I'm sorry but that is why they called it bit and not a boolean, because by definition a boolean can have only 2 values: True or False if you add null to the equation then it's not a boolean anymore and it becomes something else, like a bit. A bit can be used torepresent a boolean. But if you have a bit in your DB that accepts null, then that field can not be represented as a boolean on the code (whatever that code might be: Java, C#, VB.net, c++, etc) unless you don't mind null being false.


Connect:


But it's desribed as "An integer data type that can take a value of 1, 0, or NULL". That isn't a boolean. A true boolean can only have two states.

Connect, I agree with you 100%.


jstawski:

Caddre:

Boolean in ANSI SQL is three valued the third value is null and in FCL(framework class library) 2.0 it is in System.Nullable as three valued, what I posted and the Dotnetnuke used reflction to create a read only property through DBNULL. I am a data person so I know when it was created and released last year.

http://blogs.msdn.com/somasegar/archive/2005/08/11/450640.aspx

I don't think he is talking data from the DB, i think he is referring to a variable within the class.

in C# (.net 2.0) both of the examples bellow give a compile error:

bool x =null;bool x = System.Nullable;

and in VB.Net (.net 2.0) the example bellow makes the variable be false

dim x as boolean = nothing

We are talking about the same thing but you are not using the System.Nullable<T> variable.

( The bool? type

The bool? nullable type can contain three different values: true, false and null. As such, the cannot be used in conditionals such as with if, for, or while.)

http://msdn2.microsoft.com/en-us/library/2cf62fcy.aspx

http://www.yoda.arachsys.com/csharp/csharp2/nullable.html


Caddre:

We are talking about the same thing but you are not using the System.Nullable<T> variable.

http://msdn2.microsoft.com/en-us/library/2cf62fcy.aspx

http://www.yoda.arachsys.com/csharp/csharp2/nullable.html

By making it a nullable type it's not a real boolean type anymore. It's not a primitive/value type like boolean is, it's now a typed object.

Source:

For an example of when you might use a nullable type, consider how an ordinary Boolean variable can have two values: true and false. There is no value that signifies "undefined". In many programming applications, most notably database interactions, variables can exist in an undefined state. For example, a field in a database may contain the values true or false, but it may also contain no value at all. Similarly, reference types can be set tonull to indicate that they are not initialized.

By what they wrote above, it tells me they incorporated this on the .net framework to accomadate for a null value from the db, but i think we all agree that a bit is not a truly boolean since it can have 3 values (null, 0, 1) and that is why they created a new type. If you ask me, they should have never called it a nullable boolean because a boolean can't be anything else than True or False, therefore it can't be null. Maybe that's why they didn't call it a boolean in SQL Server.

Bottom line it works for what the initial request was. Too bad he is not using 2.0, though.

Thanks to this I learned something new today and something i really disagree with.



(Bottom line it works for what the initial request was. Too bad he is not using 2.0, though.)

But the code in the link below provides a readonly Boolean property through System.Reflection PropertyInfo.

http://www.codeproject.com/vb/net/ReflectionDataBinding.asp

Set bold, italic, font type etc on the textbox(multiple)?

I have problem to find the code to bold, italic, get the font type or set the size of font on the texbox. i develop forum site. when user want to send message, they need to fulfill the title and content. what i want to do same like in hotmail.com (the flexible textbox when to submit message). ThanksHi, seethis site.

Thursday, March 22, 2012

Set hidden values and then submit automatically

>From my page shopping cart page I want to send the amount value to the
following payment page:

<script type="text/javascript">
window.onload = function (evt) { document.forms[0].submit(); }
</script>

</head>

<body>
<form name="payform" method="post"
action="https://mmm.com/payment/start.pml">
<input type="hidden" id="amount" name="amount" value=""
runat="server" />
<input type="hidden" name="merchant" value="752" />
</form>

The amount value should be set in the hidden input and then the form
should be submitted autmatically to the payment company. I have
problems capturing and setting the amount value.

I've tried with:

Sub Page_load()
amount.Value = 1212
End Sub

But I receive an error message from the payment company telling me that
amount is missing.

Can someone help me think clear?

Regards,

SDid you check if the value is getting set in the hidden variable before
calling forms[0].submit function?

Regards,
Augustin
http://augustinprasanna.blogspot.com
"staeri@.gmail.com" wrote:

Quote:

Originally Posted by

Quote:

Originally Posted by

From my page shopping cart page I want to send the amount value to the


following payment page:
>
<script type="text/javascript">
window.onload = function (evt) { document.forms[0].submit(); }
</script>
>
</head>
>
<body>
<form name="payform" method="post"
action="https://mmm.com/payment/start.pml">
<input type="hidden" id="amount" name="amount" value=""
runat="server" />
<input type="hidden" name="merchant" value="752" />
</form>
>
The amount value should be set in the hidden input and then the form
should be submitted autmatically to the payment company. I have
problems capturing and setting the amount value.
>
I've tried with:
>
Sub Page_load()
amount.Value = 1212
End Sub
>
But I receive an error message from the payment company telling me that
amount is missing.
>
Can someone help me think clear?
>
Regards,
>
S
>
>



"staeri@.gmail.com" wrote:

Quote:

Originally Posted by

Quote:

Originally Posted by

From my page shopping cart page I want to send the amount value to the


following payment page:
>
<script type="text/javascript">
window.onload = function (evt) { document.forms[0].submit(); }
</script>
>
</head>
>
<body>
<form name="payform" method="post"
action="https://mmm.com/payment/start.pml">
<input type="hidden" id="amount" name="amount" value=""
runat="server" />
<input type="hidden" name="merchant" value="752" />
</form>
>
The amount value should be set in the hidden input and then the form
should be submitted autmatically to the payment company. I have
problems capturing and setting the amount value.
>
I've tried with:
>
Sub Page_load()
amount.Value = 1212
End Sub
>
But I receive an error message from the payment company telling me that
amount is missing.
>
Can someone help me think clear?


If you want to set it using page_load, could you not edit your HTML source
and use:

<input type="hidden" id="amount" name="amount" value="<%=intAmount%>"
runat="server" />

and declare and set intAmount somewhere else?

Set IHttpHandler for all files in a directory?

Hi;

I have tried both:
<add verb="*" path="html-image\*.jpg" type="BitmapView"/>
and
<add verb="*" path="html-image\*" type="BitmapView"/>
But neither works. In both cases I just get file cannot be found and it
never calls my code.

If I set
<add verb="*" path="html-image.*" type="BitmapView"/>
That works - but it is not what I need.

Any ideas?

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htmIn IIS, there is a wildcard application map. Do that on your virtual
directory. Then, you should be a step closer to what you want...

David Thielen wrote:

Quote:

Originally Posted by

Hi;
>
I have tried both:
<add verb="*" path="html-image\*.jpg" type="BitmapView"/>
and
<add verb="*" path="html-image\*" type="BitmapView"/>
But neither works. In both cases I just get file cannot be found and it
never calls my code.
>
If I set
<add verb="*" path="html-image.*" type="BitmapView"/>
That works - but it is not what I need.
>
Any ideas?
>
--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
>
Cubicle Wars - http://www.windwardreports.com/film.htm


Er... and if the file isn't real make sure you turn OFF file existence
verification in IIS for the mapping.

David Thielen wrote:

Quote:

Originally Posted by

Hi;
>
I have tried both:
<add verb="*" path="html-image\*.jpg" type="BitmapView"/>
and
<add verb="*" path="html-image\*" type="BitmapView"/>
But neither works. In both cases I just get file cannot be found and it
never calls my code.
>
If I set
<add verb="*" path="html-image.*" type="BitmapView"/>
That works - but it is not what I need.
>
Any ideas?
>
--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
>
Cubicle Wars - http://www.windwardreports.com/film.htm


Hello Dave,

As for the httphandler configuration, as far as I knew, it supports limited
wildcard mapping format. So far based on my test, as long as you've
configured the IIS extension mapping to redirect the certain document
extension to ASP.NET isapi.dll, the following wildcard format httphandler
path is supported:

<add path="test.*" verb="*" type="PPTHandler, __code"/>

<add path="*.test" verb="*" type="PPTHandler, __code"/>

<add path="*asm.bsd" verb="*" type="PPTHandler, __code"></add>

<add path="asm*.bsd" verb="*" type="PPTHandler, __code"/>

As for the test path you provided, why did you put an "\" char in the path,
is it necessary for your application?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

This posting is provided "AS IS" with no warranties, and confers no rights.
I have to return bitmaps that I have stored in a database. So my plan was
that the filenames woul be html-file\1234.jpg, html-file\1235.jpg, etc. The
html-file directory would say it's a bitmap in the database and then the file
name would be it's PK in the database.

Is there another way to do this? Because it looks like I can't use the
directory for the path. This is presently on the VS2005 integrated server but
it needs to work on IIS also.

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm
"Steven Cheng[MSFT]" wrote:

Quote:

Originally Posted by

Hello Dave,
>
As for the httphandler configuration, as far as I knew, it supports limited
wildcard mapping format. So far based on my test, as long as you've
configured the IIS extension mapping to redirect the certain document
extension to ASP.NET isapi.dll, the following wildcard format httphandler
path is supported:
>
<add path="test.*" verb="*" type="PPTHandler, __code"/>
>
<add path="*.test" verb="*" type="PPTHandler, __code"/>
>
<add path="*asm.bsd" verb="*" type="PPTHandler, __code"></add>
>
<add path="asm*.bsd" verb="*" type="PPTHandler, __code"/>
>
As for the test path you provided, why did you put an "\" char in the path,
is it necessary for your application?
>
>
Sincerely,
>
Steven Cheng
>
Microsoft MSDN Online Support Lead
>
>
This posting is provided "AS IS" with no warranties, and confers no rights.
>
>


Hi Dave,

I would suggest you avoid using any particular characters (like the
backward slash ) in your custom httphandler's request url, you can use some
normal separaor char such as "-" to separate different part in your custom
handler's url and then parse them in your httphandler's code. e.g.

http://servername/appname/databasename-filename1.rpt
Also, directory path is not allowed as content in url path directly. The
correct way is to use them as a querystring parameter. I'm afraid there is
no other means for this so far.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

This posting is provided "AS IS" with no warranties, and confers no rights.
ok - thanks

--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm
"Steven Cheng[MSFT]" wrote:

Quote:

Originally Posted by

Hi Dave,
>
I would suggest you avoid using any particular characters (like the
backward slash ) in your custom httphandler's request url, you can use some
normal separaor char such as "-" to separate different part in your custom
handler's url and then parse them in your httphandler's code. e.g.
>
http://servername/appname/databasename-filename1.rpt
>
Also, directory path is not allowed as content in url path directly. The
correct way is to use them as a querystring parameter. I'm afraid there is
no other means for this so far.
>
>
Sincerely,
>
Steven Cheng
>
Microsoft MSDN Online Support Lead
>
>
This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
>
>

Set IHttpHandler for all files in a directory?

Hi;
I have tried both:
<add verb="*" path="html-image\*.jpg" type="BitmapView"/>
and
<add verb="*" path="html-image\*" type="BitmapView"/>
But neither works. In both cases I just get file cannot be found and it
never calls my code.
If I set
<add verb="*" path="html-image.*" type="BitmapView"/>
That works - but it is not what I need.
Any ideas?
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htmIn IIS, there is a wildcard application map. Do that on your virtual
directory. Then, you should be a step closer to what you want...
David Thielen wrote:
> Hi;
> I have tried both:
> <add verb="*" path="html-image\*.jpg" type="BitmapView"/>
> and
> <add verb="*" path="html-image\*" type="BitmapView"/>
> But neither works. In both cases I just get file cannot be found and it
> never calls my code.
> If I set
> <add verb="*" path="html-image.*" type="BitmapView"/>
> That works - but it is not what I need.
> Any ideas?
> --
> thanks - dave
> david_at_windward_dot_net
> http://www.windwardreports.com
> Cubicle Wars - http://www.windwardreports.com/film.htm
Er... and if the file isn't real make sure you turn OFF file existence
verification in IIS for the mapping.
David Thielen wrote:
> Hi;
> I have tried both:
> <add verb="*" path="html-image\*.jpg" type="BitmapView"/>
> and
> <add verb="*" path="html-image\*" type="BitmapView"/>
> But neither works. In both cases I just get file cannot be found and it
> never calls my code.
> If I set
> <add verb="*" path="html-image.*" type="BitmapView"/>
> That works - but it is not what I need.
> Any ideas?
> --
> thanks - dave
> david_at_windward_dot_net
> http://www.windwardreports.com
> Cubicle Wars - http://www.windwardreports.com/film.htm
Hello Dave,
As for the httphandler configuration, as far as I knew, it supports limited
wildcard mapping format. So far based on my test, as long as you've
configured the IIS extension mapping to redirect the certain document
extension to ASP.NET isapi.dll, the following wildcard format httphandler
path is supported:
<add path="test.*" verb="*" type="PPTHandler, __code"/>
<add path="*.test" verb="*" type="PPTHandler, __code"/>
<add path="*asm.bsd" verb="*" type="PPTHandler, __code"></add>
<add path="asm*.bsd" verb="*" type="PPTHandler, __code"/>
As for the test path you provided, why did you put an "\" char in the path,
is it necessary for your application?
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
I have to return bitmaps that I have stored in a database. So my plan was
that the filenames woul be html-file\1234.jpg, html-file\1235.jpg, etc. The
html-file directory would say it's a bitmap in the database and then the fil
e
name would be it's PK in the database.
Is there another way to do this? Because it looks like I can't use the
directory for the path. This is presently on the VS2005 integrated server bu
t
it needs to work on IIS also.
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm
"Steven Cheng[MSFT]" wrote:

> Hello Dave,
> As for the httphandler configuration, as far as I knew, it supports limite
d
> wildcard mapping format. So far based on my test, as long as you've
> configured the IIS extension mapping to redirect the certain document
> extension to ASP.NET isapi.dll, the following wildcard format httphandler
> path is supported:
> <add path="test.*" verb="*" type="PPTHandler, __code"/>
> <add path="*.test" verb="*" type="PPTHandler, __code"/>
> <add path="*asm.bsd" verb="*" type="PPTHandler, __code"></add>
> <add path="asm*.bsd" verb="*" type="PPTHandler, __code"/>
> As for the test path you provided, why did you put an "\" char in the path
,
> is it necessary for your application?
>
> Sincerely,
> Steven Cheng
> Microsoft MSDN Online Support Lead
>
> This posting is provided "AS IS" with no warranties, and confers no rights
.
>
Hi Dave,
I would suggest you avoid using any particular characters (like the
backward slash ) in your custom httphandler's request url, you can use some
normal separaor char such as "-" to separate different part in your custom
handler's url and then parse them in your httphandler's code. e.g.
http://servername/appname/databasename-filename1.rpt
Also, directory path is not allowed as content in url path directly. The
correct way is to use them as a querystring parameter. I'm afraid there is
no other means for this so far.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
Lines: 40
Thread-Topic: Set IHttpHandler for all files in a directory?
thread-index: AcbrwiA3mpAIgerrRbaY5XH7yI7/5g==
X-WBNR-Posting-Host: 207.174.201.190
MIME-Version: 1.0
Content-Type: text/plain;
charset="Utf-8"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Content-Class: urn:content-classes:message
Importance: normal
Priority: normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.1830
NNTP-Posting-Host: TK2MSFTNGXA01.phx.gbl 10.40.2.250
Xref: leafnode.mcse.ms microsoft.public.dotnet.framework.aspnet:23986
ok - thanks
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm
"Steven Cheng[MSFT]" wrote:

> Hi Dave,
> I would suggest you avoid using any particular characters (like the
> backward slash ) in your custom httphandler's request url, you can use som
e
> normal separaor char such as "-" to separate different part in your custo
m
> handler's url and then parse them in your httphandler's code. e.g.
> http://servername/appname/databasename-filename1.rpt
> Also, directory path is not allowed as content in url path directly. The
> correct way is to use them as a querystring parameter. I'm afraid there i
s
> no other means for this so far.
>
> Sincerely,
> Steven Cheng
> Microsoft MSDN Online Support Lead
>
> This posting is provided "AS IS" with no warranties, and confers no rights
.
>
>

Tuesday, March 13, 2012

Set page stylesheet in code-behind?

Let's say we want to change the page style each day:
<HEAD>
.
.
.
<style type="text/css" media="all">@dotnet.itags.org.import url( TuesdayStyles.css );
</style>
</HEAD>
Is it possible to do this in *code-behind* ? Can you write the <STYLE>
directive into the <HEAD></HEAD> section of the page?
Thanks
Liamin 2.0 it's easier...they have a method just for this.
in 1.1, you can plunk a literal down and use Literal.Text = "aaaaa"
Karl
MY ASP.Net tutorials
http://www.openmymind.net/
"Liam" <Liam@.zzzz.net> wrote in message
news:ORITw$TFGHA.3100@.tk2msftngp13.phx.gbl...
> Let's say we want to change the page style each day:
> <HEAD>
> .
> .
> .
> <style type="text/css" media="all">@.import url( TuesdayStyles.css );
> </style>
> </HEAD>
> Is it possible to do this in *code-behind* ? Can you write the <STYLE>
> directive into the <HEAD></HEAD> section of the page?
> Thanks
> Liam
Karl,
Happen to have the name of that method?
In 2.0? It's under Page.Header.StyleSheet
Page.Header is great in 2.0...check it out:
http://msdn2.microsoft.com/en-us/li...
rs.aspx
Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"The Colonel" <colonelangus@.budweiser.com> wrote in message
news:1136832866.985107.80350@.o13g2000cwo.googlegroups.com...
> Karl,
> Happen to have the name of that method?
>

Set page stylesheet in code-behind?

Let's say we want to change the page style each day:

<HEAD>
..
..
..
<style type="text/css" media="all">@dotnet.itags.org.import url( TuesdayStyles.css );
</style>
</HEAD
Is it possible to do this in *code-behind* ? Can you write the <STYLE>
directive into the <HEAD></HEAD> section of the page?
Thanks
Liamin 2.0 it's easier...they have a method just for this.

in 1.1, you can plunk a literal down and use Literal.Text = "aaaaa"

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/

"Liam" <Liam@.zzzz.net> wrote in message
news:ORITw$TFGHA.3100@.tk2msftngp13.phx.gbl...
> Let's say we want to change the page style each day:
> <HEAD>
> .
> .
> .
> <style type="text/css" media="all">@.import url( TuesdayStyles.css );
> </style>
> </HEAD>
> Is it possible to do this in *code-behind* ? Can you write the <STYLE>
> directive into the <HEAD></HEAD> section of the page?
> Thanks
> Liam
Karl,

Happen to have the name of that method?
In 2.0? It's under Page.Header.StyleSheet

Page.Header is great in 2.0...check it out:
http://msdn2.microsoft.com/en-us/li...ad_members.aspx

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/

"The Colonel" <colonelangus@.budweiser.com> wrote in message
news:1136832866.985107.80350@.o13g2000cwo.googlegro ups.com...
> Karl,
> Happen to have the name of that method?