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. sbushway

    Testing 508 Compliancy

    I've got an application that I need to test for 508 Compliancy. The problem is that my application is accessed only by logging in with a username and password. So when I run an accessibility check, the page that's getting checked is the page that lets the user know they're not logged in -...
  2. sbushway

    Convert Month Name to Corresponding Integer Value

    Yuck. Thanks for your help. You'd think something so simple wouldn't be so wordy! :)
  3. sbushway

    Convert Month Name to Corresponding Integer Value

    Thanks for the quick reply. I figured that was an option - I was just hoping there was a less wordy way :)
  4. sbushway

    Convert Month Name to Corresponding Integer Value

    I know I'm probably missing something incredibly simple, but how can I convert a month name into its integer equivalent (ie: September would be 9) I'm creating a new date. I've got the year and the day in the correct format. The format for the month needs to be the integer value - and I've...
  5. sbushway

    Editing .sitemap file from codebehind?

    Hi, I have an application that I'd like to set up so that certain roles can only see certain pages. What I want to do is have a list of roles and for each role, have the administrator decide which pages that role can see (I'll either have a checkbox or a radiobutton next to each page displayed...
  6. sbushway

    Dynamic Table Not Appearing

    I figured it out - I'm a dummy. I forgot to do the "Me.Controls.Add(tbl)" to my code. Sorry about that :)
  7. sbushway

    Dynamic Table Not Appearing

    Hi again, Well, I just figured it'd be a VB.NET question since I'm creating the table in my code-behind ... Essentially the situation is this: I've got a bunch of data, grouped by a specific number. For instance, I'll have 1 record under 00001, 2 records under 00002, 1 record under 00003...
  8. sbushway

    Dynamic Table Not Appearing

    Hi, I'm dynamically creating a table in my code-behind but the table never appears when I run the program. Here's what I have so far: Dim tbl As New Table tbl.Width = 700 tbl.CellPadding = 0 tbl.CellSpacing = 0 tbl.Visible = True Dim trHeaderRow01 As New TableRow Dim tCell01 As New...
  9. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Oh gosh, please don't apologize! You've been a huge help!
  10. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Yep, I tried that ... still get the same error. I'm going to keep researching it ....
  11. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Actually - I have one more question ... My PrintRCAHeader() function returns a string variable that contains the HTML for the header. Where I'm calling PrintRCAHeader() is just a Sub, so I can't return anything from it. If I change it to a function, such as Protected Function...
  12. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Great minds think alike - I thought the same thing, tried it and it worked! My header's still not printing out, but I think it may be bugs in my logic. So while I'm not completely sure that what I tried will work, it's definitely a great start. Thank you *very* much for your time. I truly...
  13. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Kay - I figured out a way to get the error to go away: In my HTML of my .ASPX page I have this: <asp:Repeater ID="rptRCA" runat="server" OnDataBinding="rptRCA_OnItemDataBound"> And in my function on my codebehind page, I have this: Private Sub rptRCA_DataBinding(ByVal sender As Object, ByVal e...
  14. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Bummer ... I get an error that says "Item is not a member of System.EventArgs
  15. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Hi Therese, A few quick things ... You said Was "leve" a typo? That's one of the things I was wondering about - how to have the DataSet (or DataView in my case) accessible in the OnDataBinding Event. Right now, just to get started, I've created a global DataView that I reference in the ODB...
  16. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    I'm just about to leave for the day, but I REALLY appreciate the time you took on this. I'll give it a shot first thing tomorrow morning. Thanks again - have a great afternoon, Suzanne
  17. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Well, I liked that I could format the Repeater any way I wanted ... And with the repeater, I can set the style of the HTML tables that I'm outputting to "page-break-before:always" since I need to start a new page for each different report. And I'm not sure how to do that with a GridView.
  18. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    From a stored procedure - not sure if you need to see it or not, but here it is ... it's ugly, so bear with me. CREATE PROCEDURE SPSLS_NEASRpts ( @nUIC char(5), @nRptID char(9), @nIsAdmin char(1), @nAll char(1), @nParent char(1) ) AS DECLARE @vUIC char(5) DECLARE...
  19. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    That'd be great if you wouldn't mind doing a conversion to VB!
  20. sbushway

    Workaround for a Dynamic HeaderTemplate in Repeater

    Hi, I've got a report to display, and the header part of the report contains dynamic data (as does the main section). It looks like this: Report Title Dynamic Data Dynamic Data Dynamic Data ************************************************** NAME DOB M/F John Doe 1/1/1970 M...

Part and Inventory Search

Back
Top