Search results for query: *

  1. 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
  2. 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...
  3. 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...
  4. 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
  5. 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
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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
  11. 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?
  12. 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...
  13. 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...
  14. S

    Inserts in DataGridView, then change your mind...

    I have a DGV, all works OK, but. If I hit the "+" (add) button on the Navigator bar, it gives me the new row. But if I change my mind and do not want to add, as soon as I click on another row I get an exception flagging the first column in the table that doesn't allow nulls. Is there a way the...
  15. S

    vb .net vs. ASP .NET -- Where to draw the line

    Hi, We have been getting an increasing number of requests to re-write VB .NET apps into ASP .NET. Some are quite complicated, lots of user interface and back end processing via stored procedures. At what point do you say, this is not a good candidate for the web? Any thoughts welcomed! Steve
  16. S

    checkBoxes help - too many

    HI, I have an ASP .NET page that collects warranty information, name, address, etc. I gather the info, validate it with validation controls, then call a Stored Proc on SQL 2005 passing the data as parameters that does the inserts. Now I have to put check boxes on it for the users to check...
  17. S

    Table update design help please.

    Hi, I'm just getting started with ASP .NET, so bear with me... I need a simple page that will collect data from the user and update a table with it. Several textboxes, standard stuff: Name, address, St, zip, phone, etc. How is the best way to do this? Gather all info in text boxes, then...
  18. S

    ASP and ASP .NET on same server

    My client has a Windows 2003 Server which runs IIS. Their site is in ASP pages. They asked me to develop an ASP .NET application that uses SQL Server 2005, which I have completed. They loaded V 2.0 of the .NET Framework. I installed my website under their Default Web Site. I think the only...
  19. S

    IIS Configuration Error

    Hi, I have developed a very simple ASP .NET using VS 2005 to get going. I am trying to test it on a Windows Server 2003 box. I created an MSI file in my setup project and have ran that on the server putting it in the default web site. When I browse to my folder, I get: Configuration Error...
  20. S

    dropdownlist on web form

    Hi, I have just developed my first ASP .NET webform. A re-write of a VB .NET windows application. Everything is good except the behavior of the combo boxes. They are loaded from stored procedures in SQL 2005. That part is good, the have the good data. But I do not want them all set to the...
Back
Top