Search results for query: *

  1. S

    GridView column populated by method.

    Matt, Thanks, you got me going down the right path by looking at your code. Here is what I ended up with that works: <ItemTemplate> <asp:Label ID="Label2" runat="server" Text = '<%# ShowGroupBenefit(Container.DataItem) %>'></asp:Label> </ItemTemplate>
  2. S

    GridView column populated by method.

    Hi, I dragged a Gridview onto the page, and in the code, set the DataSource and did the DataBind. That all went well. For one of the columns, I want to populate by calling a method passing it the original value from the datasource. How can I do this? Thanks
  3. S

    Two-IIS server approach.

    Hi, I have an ASP .NET app running on IIS. I want the static content on a web server outside the firewall, and the controller/services layer on an app server inside the firewall. So, I need to have IIS set up as just an HTTP server on the web server, and redirect the requests to the app server...
  4. S

    Lost properties tab

    OH! Got it! When right clicked on the tab, it had Tabbed Document selected. I change it to Dockable, then I was able to drag it over as you stated.
  5. S

    Lost properties tab

    If have tried that. When I drag the window over to the right hand side where the solutions exporer is, it becomes a black circle with a line through it.
  6. S

    Lost properties tab

    Some how I have lost my properties tab in the right hand pane of VS 2005. Normally, it is beside the Solutions Explorer. When I do anything from the IDE to view properties, it brings it up as a window tab in the middle of the screen where you normally see code and the designer. I have tried...
  7. S

    need help handling ' when building sql

    cjard. I have used PQs before - based on your link!! This time I am building dynamic SQL based on 10 dropdownlists the user may or may not have clicked on. Some are equals, and some are likes. I didn't know if I could do that.
  8. S

    need help handling ' when building sql

    I am building a where statement in vb .net. "Where myTextField = '" & me.ddl.selectedvalue & "''" work except for when there is an apostrophy in the selected value, such as "Steve's books" What do I do? Thanks
  9. S

    link to ASP .NET page from HTML site

    Hi, The folks I am working with have an HTML site, with a URL that points to it. They asked me to write them a couple of ASP .NET pages so they could access a database, which I have done. Once loaded to IIS, how do they link to my pages from their HTML site? Thanks Steve
  10. S

    Best way to layout page with text and ASP controls

    I am curious on what it is thought the best way to layout the web page with the text and images mixed with Asp .Net controls? Set everything to absolute positioning and arrange at will? Don't move anything on the designer, but keep switching to Source and hand coding the HTML? If you have some...
  11. S

    select a gridview row and show details

    HI, I have a gridview that is selectable with a button. Once you select a row, I need to grab a value out of that row, and use it to makes SELECTs to tables to populate other sections of the page. 1) how do I get just the value out of that row 2) how do I make a Select to tables and get several...
  12. S

    Some design advice please.

    Hi, I have an ASP to develop that needs to do the following: (The page will be connected to an Access mdb.) Needs to have a list of 8 dropdownlists across the top that will act as a filter for a grid view of data from the database. The more of these they populate, the more filtered the data...
  13. S

    Stretch a label control to edge of browser

    Worked perfectly. Thanks!
  14. S

    Stretch a label control to edge of browser

    Hi, I have an asp .net app that displays a message from the database. It may be a short phrase, or a couple of sentences. I call the db and retrieve the message, then set the label.text to the message. I want it to go from left to right as far as the browser is wide before it wraps, not just...
  15. S

    HUGE font

    JohnH, Yep, that did the trick. Thanks!
  16. S

    HUGE font

    I need to have the font of a lable be huge. Like 1 1/2" or so tall. When you go to the size property, XX-Large is as big as it goes, and that is still way too small. How do I go about getting bigger font? Thanks
  17. S

    VB.NET apps on handheld Win CE 5.0?

    Does anyone know the difference between Win CE 5.0 Pro and Core? Especially as it relates to vb .net development?
  18. S

    VB.NET apps on handheld Win CE 5.0?

    Can I run VS 2005 VB .NET apps on handheld devices that run WIN CE 5.0?
  19. S

    Reports via ASP .NET page

    Hello, One of my customers has asked that any new applications be in ASP .NET, instead of a windows application. They even had me convert a couple of the small windows apps to run on their Intranet. Several of their apps. have reports using the VS Report View. When I convert these apps to...
  20. S

    Sharing modules with team members

    Hi, we are a small shop, with two installations of VS 2005 Pro Edition. Not the Team edition. On our next project, we would like to split up some of the project between the two of us. Some of the Windows forms are stand alone and could be developed separately. If I develop some of the forms...
Back
Top