Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:454174
More Search Options
RSS Available
Matching Posts
Any SOA Recommendations?
i need a REAL book with REAL solutions. I have both of Thomas Erls...they're ok.
Posted to
Book Reviews
(Forum)
by
twgathings
on 11/18/2005
Debate: Typed classes vs XmlDocument for Parameters
Give me your real world experience on the consequences of using typed classes as parameters vs vanilla xml. .Net framework and VS.NET makes it easy to use and build services from typed classes, but for ongoing maintenance, enhancing, and flexibility, this method seems crude and brittle. On the other hand, you basically have to parse and probably should validate any Xml coming in vanilla, such as in XmlDocument. Additionally, what have you done to handle nulls (where nillable='true') for types serialized
Posted to
XML Web Services
(Forum)
by
twgathings
on 10/11/2005
Guidance on O/R Mappers, architecturally speaking
I am impressed with O/R Mappers. Does anyone have a source for guidance / best practices for including an O/R Mapper into the architecture, ie, should I still use a layering approach, etc. thanks
Posted to
Architecture
(Forum)
by
twgathings
on 7/8/2005
Re: Interfacing BLL with very specific DAL(s)
udi, i agree with your outlook-I just started looking at an O/R mapper and i am extremely impressed. however, i don't understand all the fuss about circular references. Referencing can be simply accomplished with three layers of complete, first-class objects-the typical DAL miniarchitecture as mentioned, a BusinessProcess layer, and a BusinessEntities layer, Where BusinessEntities is the lowest-level and referenced by both DAL and BusinessProcess. Typically, although invariants occurr, any other
Posted to
Architecture
(Forum)
by
twgathings
on 7/8/2005
Re: plz Help: Converting 4 decimal places to 1 decimal place
that's some crazy code. all you need to do is this: Dim dToManyPlaces As Double = Double .Parse("123456.54321") Dim dJustRight As Double = Math.Round(dToManyPlaces, 1) Response.Write(dToManyPlaces.ToString() + ";" + dJustRight.ToString())
Posted to
Getting Started
(Forum)
by
twgathings
on 7/7/2005
Re: list control binding problem!! ( urgency! )
you almost have it. don't declare a new dropdownlist if it's already on the page. bind to the datatable instead of the rows Like this: DataTable t = new DataTable(); t.Colunms.Add( "id" ); t.Columns.Add( "name" ); t.Rows.Add( new string[2]{ "1" , "aaa" } ); t.Rows.Add( new string[2]( "2" , "bbb" } ); ddl.DataTextField = "name"; ddl.DataValueField="id"; ddl.DataSource = t; ddl.DataBind();
Posted to
Web Forms
(Forum)
by
twgathings
on 7/7/2005
Re: disabling a linkbutton knowing its id
sorry about the code-it was pseudocode, but looked too much like C#. either the link button doesn't exist, or your id is incorrect because your code seems correct-i;ve been wrong many, many times though. try this by calling WriteOutControls() from pageload (this should prove which controls are alive and what's in your list) Private Sub WriteOutControls() Dim sb As System.Text.StringBuilder = New System.Text.StringBuilder sb.Append("----current controls----") WriteControl(sb, Me ) sb.Append("--selected
Posted to
Getting Started
(Forum)
by
twgathings
on 7/7/2005
Re: disabling a linkbutton knowing its id
thought you said you could find it? either 1 of 3 things wrong here: 1. you dynamically added the link button and you aren't adding it back on page load 2. your id is wrong 3. didn't think this, but maybe you need to look recursively. LinkButton x = (LinkButton)FindMyControl(this); Control FindMyControl(Control ctl) { x = ctl.FindControl(id) if x is not null return x; for each control c in ctl.Controls { return FindMyControl(x); } }
Posted to
Getting Started
(Forum)
by
twgathings
on 7/6/2005
Re: disabling a linkbutton knowing its id
after you find it (find returns a type: Control), then you cast it using CType or DirectCast. you can disable it once you cast it b/c Disable is not a member of Control.
Posted to
Getting Started
(Forum)
by
twgathings
on 7/6/2005
Re: User Controls
user controls are a server control concept and interactions b/t user controls only happen during a complete page lifecycle. thus, the concept of refreshing a page from user control actions doesn't really apply. do you mean that the page doesn't reflect new states of the user controls, ie, actions didn't update the page?
Posted to
Web Forms
(Forum)
by
twgathings
on 7/6/2005
Page 1 of 17 (161 items) 1
2
3
4
5
Next >
...
Last »
WindowsClient:
Snoop with 64 bit support
ASP.NET:
jQuery Hide/Close Link
ASP.NET:
Merry Christmas
TechNet Edge:
FPE Customer Story
Silverlight:
Being a writer, and having an editor. A Short Rant.
Channel 9:
Channel 9 Live at PDC09: Dr Brian Brooks (3M)
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 13 of 13
Silverlight:
Information for Silverlight HVP Developers…
WindowsClient:
Custom Content Loaders in Silverlight 4.0
WindowsClient:
MVVM Links\Info
TechNet Edge:
Check out how Dolly Parton uses IE8 and Web slices!!!
Silverlight:
A Silverlight HVP Update
Channel 9:
Channel 9 Live at PDC09: This Week on Channel 9 - PDC09 Daily Show Edition Day 1
Channel 9:
Maria Klawe: Scholar, Scientist and Microsoft Board Member
Channel 10:
Play the Bing Sherlock Holmes Game
Channel 9:
Channel 9 Live at PDC09: Loic Le Meur
Channel 10:
How to Delete Jump List Items
Channel 10:
Roll Back to Classic Network Indicator in Win7
Channel 9:
Jafar Husain: Silverlight Toolkit and Rx, Part 2
Channel 9:
Ping 42: Is Microsoft cool? Photo DNA, Win7 tool, 10k MIX contest
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online