Search

You searched for the word(s): userid:149080

Matching Posts

  • Re: How to convert varchar to xml datatype in sql2005

    noahb - Your suggestion kind of work worked for me. I did try to convert to varchar max earlier but somehow it didn't work until after I read your post . Next time I will read your messages first and then start debugging stuff :)
  • Re: Gridview Footer not showing

    Gridview doesnt allow the footer to display if there are no records in its datasource. So first add a dummy/empty but valid row/record/value to the gridview datasource before assigning and binding it to the gridview. Then set the first row of the gridview to invisible. An example is given below, /* DataRow dr = dataView.Table.NewRow(); dataView.Table.Rows.Add(dr); grd.DataSource = dataView; grd.DataBind(); grd.Rows[0].Visible = false ; */ Good luck - redsunbeer
    Posted to Data Presentation Controls (Forum) by RedSunBeer on 9/28/2007
  • ntier application

    I am developing a ntier application using windows forms (c#) for the presentation tier, a middle tier for business processing and a data tier for data access and storage. Each layer will have several components(or classes). How do I get the components in each tier to communicate with other components withing their own tier as well as components in other tiers?Should I use dotnet remoting or a dcom architecture with dotnet.? I am not familiar with dcom and have been through the msdn site regarding
    Posted to Architecture (Forum) by RedSunBeer on 8/28/2003
  • Re: Server Application Unavailable

    I was getting this error message "Server Application Unavailable" while trying to redirect my page [Response.Redirect="/filename";]. The reason being that I was using the virtual path which was pointing to my default web folder and not to my application web folder. To correct the error I used the relative file path [Response.Redirect="../filename";].
    Posted to Installation and Setup (Forum) by RedSunBeer on 1/17/2003
Page 1 of 1 (4 items)