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: *

  • Users: slatet
  • Order by date
  1. slatet

    Using app pool with web part

    Is anyone familiar with how to use and app pool with a web part? I'm told that is why I keep getting a "catastrophic failure" but I am not a sys admin. My impersonate is set to false in the web.config. My .dwp is in the wpcatalog folder My .dll is in the bin folder. It is registered in...
  2. slatet

    Not registered as safe

    I'm getting this error with my webpart. I have researched it everywhere and cannot figure out the problem. ITs probably something small I am missing. ANy help is appreciated. I am using a cab file so it generated this: <SafeControl Assembly="USA.WebParts.Log, Version=1.0.0.0...
  3. slatet

    Not associated with a trusted

    Is it still considered a double hop if the webserver and the sql server are located on the same VM image?
  4. slatet

    Not associated with a trusted

    I've researched this throughout tek tips. SQL Server is in mixed mode. I have turned anonymous off in IIS for both the website and the app pool. I am using integrated security "integrated security=SSPI;data source=(Local);initial catalog=log;trusted_connection=true" I had originally tried...
  5. slatet

    Connection string problem

    I'm developing a c# webpart on my computer and then copying it to a VM image on my same computer to test it. Each time I try to "fill" a dataset it redirects me to the maintenanc screen. Can anyone help me figure out why? Here is the connection string string connectionString = "user...
  6. slatet

    change bordercolor

    I figured it out. There needs to be text in the cell for the border to display. I do not want any text so I did this tzCell.Text = "&nbsp;"; and that did it.
  7. slatet

    change bordercolor

    Ok, I moved it into a CSS and I'm having the same exact problem.
  8. slatet

    change bordercolor

    You would think this would be easy, but its not cooperating. I'm trying to create a table on the fly and change the border color of the cell. I know that BorderWidth is working because the box shrinks in size as I make the width larger, but the color is still white. Any help is appreciated...
  9. slatet

    HIde gridview footer?

    Can you hide/show a gridview footer programmatically? Basically what we want to do is allow someone to add a row to a grid but we don't want the empty textboxes just sitting there all the time. The user will have to hit a button to make it appear.
  10. slatet

    IsDaylightSavingTime

    Is anyone good at using IsDaylightSavingTime? I grabbed clock code off of a website but I have to change it for daylight savings. I found IsDaylightSavingTime might be the solution but am struggling to get it to work. Here is the code: var day=""; var month=""; var myweekday=""; var...
  11. slatet

    Attributes.Add with a onclick text box

    Its written in C#. I did do that but the error message doesn't help me. Its saying object expected on an HTML line that I find nothing wrong with.
  12. slatet

    Attributes.Add with a onclick text box

    Does anyone know if this is doable? ANd if it is, what is wrong with this line. Textbox.Attributes.Add("onclick", "Procedure(value);"); I'm getting an "error on page" on the page status bar when I click on this field. Thanks in advance.
  13. slatet

    Attributes.Add with a onclick text box

    Sorry I shouldn't have said "StoreProc" I should have just put "procedure". The procedure is located on the same page.
  14. slatet

    Attributes.Add with a onclick text box

    Does anyone know if this is doable? ANd if it is, what is wrong with this line. Textbox.Attributes.Add("onclick", "StoreProc(value);"); I'm getting an "error on page" on the page status bar when I click on this field. Thanks in advance.
  15. slatet

    Determine cell clicked

    We are trying to figure out how to determine which cell in a datagrid is clicked. Its actually an infragistics webgrid so I don't know if anyone is able to help. We are creating the grid dynamically and assigning a URL to the cell with the following type of code: newRow.Cells[j].Tag =...
  16. slatet

    keeping form top level

    We are having difficultly with a form staying on top of the owner. It seems to depend on the speed at which the owner loads. If it loads quickly then a setfocus on the modal works but if it finishes reloading after the modal then the focus switches back. The modal has a list in which you...
  17. slatet

    Msg 208 err too

    That works.
  18. slatet

    Msg 208 err too

    CREATE FUNCTION dbo.fn_NoViewTaskRouteSection(@Section int) RETURNS bigint AS BEGIN Declare @ReturnTaskID bigint Select @ReturnTaskID = TaskRouteTaskID From vw_TaskRouteSections Where ((TaskRouteStatus <> 1 And TaskRouteType = 2) OR TaskRouteType...
  19. slatet

    Msg 208 err too

    The owner is dbo, the name of the function is dbo.fn_blahblah and I call it using the same - dbo.fn_blahblah.
  20. slatet

    Msg 208 err too

    I have read the posts on 208 and they do not help me. When I try to call a function from a procedure in query analyzer, I get that error. I am positive that the database is correct, the name is spelled correctly, and the function does in fact exist the the correct database and still the error...

Part and Inventory Search

Back
Top