Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JGALEY

    Display Grouping in Repeater or DataList

    Oops, the strLastHeader was declared and set to " " at the instance level - forgot about that part of the code. Glad you found something that will work for you. Jason www.catotek.com
  2. JGALEY

    Display Grouping in Repeater or DataList

    I should point out that the field names bound to the datalist control (like "JOBTitle," for example) are from a datareader used to populate a dataview or datatable, which is then bound to the datalist via a databind command. I hope this information is helpful to you. There may be better ways...
  3. JGALEY

    Display Grouping in Repeater or DataList

    Here's a simple way to show group headers that works well for me: <asp:datalist id="dlJobs" runat="server"> <itemtemplate> <%# DisplayHeaderIfNeeded(Container.DataItem("LOCName")) %> <asp:hyperlink id=hylCurrentJobs runat="server" font-size="8pt" navigateurl='<%#...
  4. JGALEY

    Can't Access http://localhost

    Is the machine you are using Windows 2003 server? If so, you need to authorize ASP.NET 2.0 in IIS on your server. In the IIS console, go to Web Service Extensions, and see which types of apps are allowed and prohibited. If your development server is on XP, then I am not sure... Jason...
  5. JGALEY

    Installation Rights

    You can create an MSI through a web publish package. I used that option to deploy a web site with Crystal Reports merge modules in it. In that case, I am sure you need admin rights on the server to install the app, and Windows sees it as an installed application under the Control Panel. I...
  6. JGALEY

    strange compiler error I only get sometimes

    Thanks for the response: I appreciate it, and I apologize for not having better info. I did not have enough understanding to really address the question to you properly. It is .NET 2.0. I was putting the application's name "GradeBook" as the namespace in two classes I developed, and then I...
  7. JGALEY

    strange compiler error I only get sometimes

    I am getting a compiler error that I cannot nail down. When I go to pages that use certain classes, I get an error that looks like this: Compiler Error Message: CS0434: The namespace 'GradeBook' in 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET...
  8. JGALEY

    text rotation does not work on a web form?

    holy moly! Look at this mad "solution" I found: http://tek-tips.com/viewthread.cfm?qid=908468 A CSS property called "writing-mode." So I tried it out, and it sorta works in IE. I just had to set a CSS class for the text field. The app is on an intranet, so I might be able to enforce IE...
  9. JGALEY

    text rotation does not work on a web form?

    I have a report done in Crystal for Visual Studio.NET 2005 (Crystal 10), as part of an ASP.NET web site. I did 90 degree text rotation in a crosstab header field to save space (so that the column header text flows up in a straight line). It works great in report preview, but when I load the...
  10. JGALEY

    can I use SQLDataSource to populate form fields like textboxes?

    Thanks for the idea! Jason www.catotek.com
  11. JGALEY

    using a master page breaks my SQLDataSource.Insert operation

    I have a working page that I transplanted into master/content page arrangement. When running the page now, things that used to work, like inserting a record using a SQLDataSource, no longer work. SQL Server returns an error saying I cannot insert a null in a column, but the Insert parameters...
  12. JGALEY

    Why sometimes we use small sometimes big letters ?

    I have always been told to differentiate fields from properties by using lower case to start a field, and upper case to start a corresponding property. Other than that, I usually start variables either in lower case or with an underscore, but that seems to be a matter or personal preference to...
  13. JGALEY

    can I use SQLDataSource to populate form fields like textboxes?

    I have SQLDataSource working to load a series of records in a GridView control. Works great for that, and I can insert and update using the SQLDataSource, also with no problem. What if I want to load a single database row for editing on a form, with typical controls like text boxes - can I use...
  14. JGALEY

    IE and Firefox problem - text is all white in FF, ok in IE

    I said I was in the process of converting to CSS from tables for layout (along with other assorted outdated crap). I am removing the <font> tags as fast as I can, I promise!!! :-) Adding a DOCTYPE magically broke the table-based header in both FF and one ASP.NET page I am using, so I removed...
  15. JGALEY

    IE and Firefox problem - text is all white in FF, ok in IE

    That did the trick, thanks! I knew it had to be something simple... Jason www.catotek.com
  16. JGALEY

    IE and Firefox problem - text is all white in FF, ok in IE

    btw, I added a DOCTYPE to see what that would do, since there was not one before. No change, except to screw up the table that is still used to layout the header (I planned to change that later...) I have tried strict and transitional... Thanks again, Jason www.catotek.com
  17. JGALEY

    IE and Firefox problem - text is all white in FF, ok in IE

    I am in the process of converting a table layout to CSS and divs. Using Dreamweaver MX 2004 with templates. Linking to a style sheet. Basically a two-column layout with a header. Text is normal color in IE - headings like H2 and content in p tags are fine. In Firefox, pretty much all text...
  18. JGALEY

    first row of datareader results not showing in datagrid

    Sure enough, that does the trick. I have never understood why sometimes you need dr.read() and other times you do not. I guess the act of binding it to the datagrid causes it to read? Thanks! Jason www.catotek.com
  19. JGALEY

    first row of datareader results not showing in datagrid

    I have simple ASP.NET app (.NET 1.1) that allows the user to build a SQL query and show the results in a datagrid. It works OK, except that the first row does not show in the datagrid. If I run the query directly in SQL Server Query Analyzer, I get 17 rows. When I run it through the app, I...
  20. JGALEY

    How to add a Linksys WPS54G Printserver to SBS2003 server

    I noticed you said you could ping 192.168.0.80 (the print server) if you connected via ethernet but not if you removed the wire. Are there two NIC's for this device - one wireless and one ethernet? Do you need two IP's - one for each NIC? Maybe I am missing something, but I hope this helps...

Part and Inventory Search

Back
Top