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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by threeo

  1. threeo

    Error message is an "access denied"

    why would it still be referring to the control that i removed????
  2. threeo

    Error message is an "access denied"

    it didn't come with an uninstall script i tried removing the control from my toolbox but that had no effect on the error: ------------ Parser Error Message: Access is denied: 'eeeksoft.web.popupwin'. Source Error: Line 198: <add assembly="*"/> ------------- eeeksoft.web.popupwin is the name...
  3. threeo

    Error message is an "access denied"

    does anyone have any clue about this..... i downloaded a third-party popup window control and added it to my .net app. it was working ok and i moved on to another area of code and suddenly when i try to run my app i get an error generated out of the machine.config file referencing a line in the...
  4. threeo

    unable to access some grid data

    i wonder if this would duplicate the problem.... do a postback to the page but leave your grid unaffected (so now you've lost the dataset it is bound to) and THEN try to response.write the cell data also: did the cell you grabbed the data on.....did it have an edit template? mine does...
  5. threeo

    unable to access some grid data

    wow... now i'm really confused. i can clearly see my grid on the page with the data i also did a Response.Write(oGridAttributes.Items(0).Cells(2).Text) and still get "" i guess i will have to chalk this one up as "unsolvable" and store the values in a hidden field. damnit
  6. threeo

    unable to access some grid data

    i believe this is the source of my problem.... my grid is rendered as: <Columns> <asp:EditCommandColumn EditText="Edit" Text="Cancel" UpdateText="Update" /> <asp:BoundColumn DataField="RequiredText" ReadOnly="True" HeaderText="Attribute"> </asp:BoundColumn>...
  7. threeo

    unable to access some grid data

    before i was going to do any coding into the application, i first ran the application and put a break at the point where i was going to need to access the data. then....i switched to the immediate window to do a pre-development of the code as i was uncertain how to access the data and was going...
  8. threeo

    unable to access some grid data

    Dim oGridAttributes As DataGrid = CType(oRow.FindControl("dgAttributes"), DataGrid) oGridAttributes is the name of the grid i'm trying to address.... actually i'm not sure why the above code works but when i do: ?ogridattributes.Items(0).Cells(1).Text i get the right response: "UserID"
  9. threeo

    unable to access some grid data

    for example, even doing this: ?oGridAttributes.Items(0).Cells(2).FindControl("txtAttributeValue").Parent yields: Referenced object 'FindControl' has a value of 'Nothing'.
  10. threeo

    unable to access some grid data

    i can't get it to work. i think the main problem is this: Referenced object has a value of 'Nothing'. it just doesn't know what oGridAttributes.Items(0).Cells(2).FindControl("txtAttributeValue") is i don't know why just can't get the syntax for it
  11. threeo

    unable to access some grid data

    ?CType(oGrid.Items(0).Cells(2).FindControl("txtAttributeValue"), TextBox).Text() Referenced object has a value of 'Nothing'.
  12. threeo

    unable to access some grid data

    when i try that.... i get the error "text" is not a member of "control" in fact...if you type all the way the final "." the drop down choices don't include "text"
  13. threeo

    unable to access some grid data

    actually.... i can't seem to get it to work..... here's how it's set up: <asp:TemplateColumn HeaderText="Value" ItemStyle-HorizontalAlign="Right"> <ItemTemplate> <%# Container.DataItem("AttributeValue") %> </ItemTemplate> <EditItemTemplate> <asp:TextBox Columns="20" id="txtAttributeValue"...
  14. threeo

    unable to access some grid data

    thanks man

Part and Inventory Search

Back
Top