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

    Excel on Windows Server 2003

    Hi Kawak, No, I hav'nt got any update. Tried to install a new Excel on Win2003 and that did not help either. Think it's very strange. There must be somebody out there who's using ASP.NET and Excel on Win2003?
  2. Miclis

    Refresh after showmodal

    It works! Thank you so much for your help!
  3. Miclis

    Refresh after showmodal

    This "return false", should I put it in the "OnClick" of the button who lauches the Modal? bButton.Attributes.Add("OnClick", "GoLookSomething('tbOne','tbTwo'); Return=false; ");
  4. Miclis

    Refresh after showmodal

    Wow! That was a fast ansver. Tanks, but... "do a return false..." ..OK, how can I do this. How does it looks like?
  5. Miclis

    Refresh after showmodal

    I have a aspx-page (Y) and I use showmodal to open a window (X)where the user can choose a value. The value comes in a textbox on page Y and the window X closes again. It works perfect, but after this my page Y every time looks like to refresh. And that is wat I don't want. Showmodal i a script...
  6. Miclis

    Excel on Windows Server 2003

    I have a ASP.NET application (Visual Studio 2003 - C#) where I open an Excel.Workbook. This works fine on my local PC (Windows XP), but on the webserver Windows Server 2003 it won't work. Where I want to open an excel workbook I get an error: "Object reference not set to an instance of an...
  7. Miclis

    Page_load not triggered in popup

    I click on a button: private void Button1_Click(object sender, System.EventArgs e) { string popupScript= "<script language='javascript'>" + "window.showModalDialog('MyDialog.aspx', null, " + "' DialogHeight=300px; DialogWidth=600px;')" + "</script>"...
  8. Miclis

    Page_load not triggered in popup

    No, I'm sorry, disable viewstate for the label doesn't help.
  9. Miclis

    Page_load not triggered in popup

    Thanks for your reply! Yes, I suppose it's using the same window twice. How can you change this? I tried to refresh the popupwindow, but how and where?
  10. Miclis

    Page_load not triggered in popup

    I open a Dialog/popupwindow when I click on a button: string popupScript= "<script language='javascript'>" + "window.showModalDialog('MyDialog.aspx', null, " + "' DialogHeight=300px; DialogWidth=600px;')" + "</script>"; Page.RegisterStartupScript("PopupScript", popupScript); In...
  11. Miclis

    Change datagrid value from popup

    Wow !! It works! Thanks for your ansver. Hope you get an OK reply on your question as well.
  12. Miclis

    Change datagrid value from popup

    Thanks enoch777, I'm a begynner as well! You wrote: "I have it inside the onclick of the link button". Where? In the HTML-part or in the C#-part. And how does it looks like?
  13. Miclis

    Change datagrid value from popup

    Hm, I don't know the ansver on YOUR question, but it seems that you know the ansver on MY question that I 've send in yesterday: I know how to open a modal window, clicking on a button after I wrote (in Page_Load) Button1.Attributes.Add("OnClick", "ShowDialog();"); //JAVAscript But I can't...
  14. Miclis

    EditCommand Modal Window

    I know how to open a modal window, clicking on a button after I wrote (in Page_Load) Button1.Attributes.Add("OnClick", "ShowDialog();"); But I can't find out how I could open a modal-edit-window when a user clicks on Edit in a DataGrid. How kan I use the DataGrid's EditCommand to open a...

Part and Inventory Search

Back
Top