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

    Encrypt Connection Strings IIS7

    Actually my code does not thrown an error, If I run it in visual studio. As I said this works fine if I use it under IIS 6. The error I listed comes from windows event log. The only error I get from the web page itself when running it under IIS is unknown error.
  2. lisat76

    Encrypt Connection Strings IIS7

    I set up my website to have the ability to encrypt connection strings. In IIS 6, I could use the below code to encrypt them. Now in IIS 7 I get this error InvalidOperationException Event handlers can only be bound to HttpApplication events during IHttpModule initialization. I...
  3. lisat76

    Installing Oracle TEXT and XML DB Components on New Instance

    I have set up a New Instance or Oracle on a Solaris Unix box that already had Oracle 10g installed. The instance was created fine, however I need the Oracle Text Component and XML DB Component installed as well. Those are not installed with this instance. They are installed on the other...
  4. lisat76

    Oracle Membership Provider -Could not load file or assembly

    I did, one of the first links brought me right back here :( Ok I'll try oracle thanks
  5. lisat76

    Oracle Membership Provider -Could not load file or assembly

    I tried both of your suggestion and still get the same error Could not load file or assembly 'Oracle.DataAccess, Version=2.111.7.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference...
  6. lisat76

    Oracle Membership Provider -Could not load file or assembly

    ok thanks, I will try that tommorrow...
  7. lisat76

    Oracle Membership Provider -Could not load file or assembly

    I am trying to set up the oracle membership provider for my web app. My application connects to my database just fine. I ran all of the oracle scripts to create the Oracle provider etc. However if i try to login to the site or create a user, anything that uses the provider etc I always get this...
  8. lisat76

    dynamic form textboxes

    I have a site I am working on, a user will choose how many rooms a site has, then once they choose how many rooms there are in each of those rooms they must then enter how many chairs will go into each particular room. I want to make a form where first the user puts how many rooms there are...
  9. lisat76

    Specified argument out of the range -Embedded Gridview

    Got it working Dim gv As GridView = DirectCast(sender, GridView) odsVisitsEdit.SelectParameters("VisitID").DefaultValue = gv.SelectedValue dviewVisitsEdit.DataBind() dviewVisitsEdit.ChangeMode(DetailsViewMode.Edit) ModalpopupVisits.Show()
  10. lisat76

    Specified argument out of the range -Embedded Gridview

    it's telling me it for this line dviewVisitsEdit.DataBind() Even if I take that out I still get it. I have narrowed down the issue a little further. If I only have one row in my top level Gridview - gvpatientname it works fine. If I have 2 rows in the gvpatientnm grid Then the selected row...
  11. lisat76

    Specified argument out of the range -Embedded Gridview

    I have a gridview(Gvpatientnm) that has another gridview embedded in it (gviewvisitdetailsinfo) I have a sub that on the selected index changed that open a details view based on the gviewvisitdetailsinfo selected value in a modal pop up window. I had this working, but it is erractic. I keep...
  12. lisat76

    get edit template control value in Gridview

    I have a gridview that has two edit item templates which have controls textbox and a label I want to get the value of the controls when I update the gridview and add that to the update parameters. I keep getting object reference not set to an instance of an object for the label and the textbox...
  13. lisat76

    Returing Sproc/SSIS to web browser

    This is SQL 2005 sorry
  14. lisat76

    Returing Sproc/SSIS to web browser

    I have a asp.net 2.0 web app. It executes the stored procedure which executes my Package below. All that works fine. However if there is an error with the SSIS package it never returns any errors to .net in the web browser. I tried returning the error code to no avail. thanks in advance alter...
  15. lisat76

    append to string

    I knew it had to be easy thanks
  16. lisat76

    append to string

    I want to be able to add text to a string the string will be variables so the length will vary, but the one constant is that they will always end with .jpg. I want to be able to append the string with text like large So if i have a string like mypicture1.jpg I would like to append it like...
  17. lisat76

    forms authentication

    this seems to be saying you have mismatched datetypes. IE trying to put a character in a date field or something
  18. lisat76

    evaluate null dates SSRS

    i have this expression =IIF (DatePart("y",Fields!GtCalcDate.Value) 304), (DateAdd ("H", -1, Fields!FirstCall.Value)),(Fields!FirstCall.Value)) that works just fine if the date field gtcalcdate is not null if it is null the field just displays #Error. I know why it can't make a calculation on...
  19. lisat76

    add

    i actually wanted this added to every row that has data
  20. lisat76

    add

    actually how do i add the s.name to say column p?

Part and Inventory Search

Back
Top