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!

Search results for query: *

  1. ecannizzo

    Using a cursor that is not yet defined

    That's what I was thinking, that there is no good way to do this. Thanks for you help!!
  2. ecannizzo

    Using a cursor that is not yet defined

    I need to call the query that is in the package so we don't have duplicate code all over the place.
  3. ecannizzo

    Using a cursor that is not yet defined

    I am creating a procedure in a package that calls a procedure in a package and sends out a cursor. The cursor coming out is a join of many tables. I need to then loop thru the cursor, however when I try to declare a variable to the cursor%rowtype I get that the cursor is not defined yet. Is...
  4. ecannizzo

    LDAP but NOT active directory

    Does anyone have any examples that connect to ldap that is not active directory? Thanks!
  5. ecannizzo

    no postback happening

    Hi all, any idea why this code wouldn't continue to postback after it runs the javascript? submit.Attributes.Add("onclick", "this.disabled=true;this.value='Please wait...';return true;"); Thanks!
  6. ecannizzo

    sessionState mode="StateServer" vs. "InProc"

    Does this happen on your development machine? Are your servers on a web farm?
  7. ecannizzo

    VS2005 Remote Debugging of ASP.NET 2.0

    Are you running Msvsmon.exe on your dev server first? After that you must open your browser to your website page on your dev server. Then you should see the process in the Attach to process box. Here is a good link: http://support.microsoft.com/kb/910448
  8. ecannizzo

    if stmt within query?

    Can I do something like this within my query? if h.notes = "Issue" then left outer join ISSUES i on h.record_id = i.id else left outer join ISSUES2 i on h.record_id = i.id end; thanks.
  9. ecannizzo

    RegularExpressionValidator inside usercontrol

    the unique id's are different'. Also, I do have a validationgroup set on the submit button. But all the validators and validationgroups have the same name on each usercontrol (they are set in the html). Could that be the problem? What is the best way to fix that?
  10. ecannizzo

    RegularExpressionValidator inside usercontrol

    I have a regularexpressionvalidator attached to a textbox in a usercontrol. I add the usercontrol dynamically to my page. It works fine. However, if I add the usercontrol multiple times to my page (so let's say my page has the usercontrol on it 4 times) then when the regularexpressionvalidator...
  11. ecannizzo

    tableadapter and connection string

    I have some code like below: P_USERSTableAdapter adapter = new P_USERSTableAdapter(); adapter.Connection.ConnectionString = p_connectionString; P_USERSDataTable table = adapter.FINDBYLOGINID(p_loginId); There are 2 items in this tableadapter commandcollection. The regular...
  12. ecannizzo

    Delete Request.QueryString variable

    I've seen stuff like this in javascript. <script language="javascript" type="text/javascript"> //this is a workaround to remove everything from the querystring document.forms[0].action = "yourpage.aspx"; </script> You can still retrieve the querystring in your code.
  13. ecannizzo

    FormsAuthentication.LoginUrl

    Thanks. I figured out that I only needed to do that in the main application and not all the sub applications. but that did work. I don't work with you anymore and you're still helping me :)
  14. ecannizzo

    FormsAuthentication.LoginUrl

    I would like to change this value in my code however its a read only property. Is there a way to dynamically set this value? I need it to point to different places depending on where the user is. Thanks!
  15. ecannizzo

    router drops connection

    I have a Belkin router and every once in a while it seems to drop the connection and i can't get on the internet. However, I can still get to https sites (secured sites) just not regular http sites. If I restart the router everything starts working properly again. Does anyone know why this would...
  16. ecannizzo

    window.open in code behind via button click event

    Try this in the page_load to see if it opens. it worked for me: Page.RegisterStartupScript("Window", "<script language=\"javascript\">window.open('UpdateBudgetConfirm.aspx?UBID=" + strSAID + "','','width=500,height=320,left=200,top=200');</script>")
  17. ecannizzo

    where clause depends on input

    Can you give me an example or point me to a website with an example of how I can use it in my situation?
  18. ecannizzo

    where clause depends on input

    I'm writing a procedure in a package. This procedure takes 3 in parameters: appno number userno number action varchar2 I need to select rows from a table based on these 3 parameters however if the parameter is passed in null I don't want it in my where clause. I thought of doing something like...
  19. ecannizzo

    combining select in one resultset

    I'm going to use the table variable for now, but I have someone looking at my query to decide whether I can do it without the cursor. Thanks for all your help!
  20. ecannizzo

    combining select in one resultset

    Enlighten me please. Why are cursors evil?

Part and Inventory Search

Back
Top