SharePoint / ASP.Net Development
Experiences from the field...
Navigation
   RSS 2.0
Categories
Entries by Month

# Friday, May 28, 2004

http://www1.msteched.com/content/webcasts.aspx

Friday, May 28, 2004 1:18:20 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

Again yesterday, Microsoft released updates to the SDK. These new versions don't seem to be much different from those released recently, except the default installation path is under Program Files. It seems the integration with Office is occuring at the documentation level as well.

There are two different downloads:

The first one is a superset of the second, adding information about Portal Server.

Friday, May 28, 2004 7:58:47 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
# Thursday, May 27, 2004

Kent Sharkey posted the regex code necessary for ASP.Net to recognize Firefox & Netscape 7.1.

If I understood regular expressions, I would provide the update for Safari.  But I don't, so instead I'll provide you with the User Agent strings for the various versions.

Thursday, May 27, 2004 2:01:02 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
# Tuesday, May 25, 2004

This SDK also includes new documentation for the Web Part Page Services Component (WPSC),

Download here.

Tuesday, May 25, 2004 9:27:12 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

From John West, Principal Consultant with Microsoft:

Default Security Rights

The TechNet article John cites:

Microsoft SharePoint Products and Technologies: Technical Overview

 

Tuesday, May 25, 2004 9:14:32 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

I added an article to my SharePoint blog that describes Setting the DisplaySize on a Text Field.

Tuesday, May 25, 2004 8:50:01 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
# Monday, May 24, 2004

When the form for a list is displayed, the input box for a single-line text field is always big -- regardless of the max length specified for the field. Why?

I don't have the answer, but I did hack a work-around. Most of the code necessary to display a different size box is already part of the product, so it's a relatively benign hack.

Details later...

Monday, May 24, 2004 3:37:13 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
# Friday, May 21, 2004

Another thing I discovered...

Defining a relation/contraint between two tables in the DataSet designer does not always create the DataRelation in the resulting DataSet object.

Friday, May 21, 2004 9:00:28 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

I use strongly-typed datasets. I like the intellisense and it IsXXXNull methods. And I bind them to data grids. Everything is good.

When acting on a datagrid in ItemCreated or ItemCommand, it is common to access the underlying data. This is acheived via e.Item.DataItem. When a grid is bound to a DataSet or DataTable, this property returns a DataRowView. My lovely, strongly-typed object is gone. :(

I needed to build a page that displayed hierarchical data. So, instead of binding my grid to a DataTable, I was binding to a GetChildRows method, which is a DataRow(). My strongly-typed DataRow is back!!!

To get the strongly-type datarow without a relation, bind to dataSet.dataTable.Rows.

Friday, May 21, 2004 8:58:52 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
# Thursday, May 20, 2004

Mr. Vasters is the author of the dasBlog blogging engine that powers this site. If you use dasBlog, provide your feedback here.

Thursday, May 20, 2004 11:54:53 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
# Monday, May 17, 2004
Monday, May 17, 2004 4:23:14 PM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 

A while ago, I upgraded my dasBlog installation to version 1.6.  I finally got around to looking at the new features, and found the drawArchiveMonths macro. This is now included, on the left below the categories.

Interestingly, it was one year ago when I vanished from the blogosphere (I don't like that word!). I'm determined to prevent that from happening again!

Monday, May 17, 2004 11:00:37 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
# Wednesday, May 05, 2004

I need to bind a dropdown list control to some data from an XML document. Initially, I tried to specify the DataSource as a node list and the DataText & DataValue properties to “@attribute_name”. No luck.

Thanks to the internet, I found the ASP.NET DropDownList XML Binder Class from the XML for ASP.Net site. This class is written to read an XML file from the specified path and create the ListItems that are added to the control.  It's not databinding in the same sense as ASP.Net, but it works!

The class uses an XMLTextReader. Since I already have a document, I can use the XMLNodeReader and I'm done. 

Wednesday, May 05, 2004 11:39:55 AM (Central Daylight Time, UTC-05:00)  #    Comments [0]  | 
Search

Further Reading...

Powered by: newtelligence dasBlog 2.2.8279.16125

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008, Paul Schaeflein

Send mail to the author(s) E-mail