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 dencom 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. brucegonewild

    Create Graphics object from User Control

    Hi there, I have a form made up of two web-user-controls. In one web-user control, I have a third party graph (saved as an image). In the other user-control I have a data-grid displaying very simple set of rows with some text and numbers in it. What I have to do is to export the content of my...
  2. brucegonewild

    Opening a server file on client machine...

    Hi there, My users generate certain reports through our website. Once they're done creating these reports, they need to export these reports back to their local box. So what I need to do is: 1. Create a temp file and write the contents of the report to this file 2. Get user to "Save" this temp...
  3. brucegonewild

    Sending web-content to PDF, Excel, Flash, JPG?

    I display a set of data through a Chart (using Telerik Chart) and a data-grid... What I'm required to do is to save everything displayed on the page (as displayed on the page) in the following formats: .pdf .xls flash and jpeg. Any idea on how to go about this?? I was hoping to be able to get...
  4. brucegonewild

    dynamic pivoting

    hey there, I need to turn this following table: Col1 |Col2 |Col3 -----|-----|---- r11 |row12|row13 -----|-----|---- r21 |row22|row23 -----|-----|---- into: Col1 | r12 | r22 -----|-----|---- Naturally, I would have to use "PIVOT". Except, when using the pivot functionality I have to...
  5. brucegonewild

    Dynamic Pivoting

    hey there, I need to turn this following table: Col1 |Col2 |Col3 -----|-----|---- r11 |row12|row13 -----|-----|---- r21 |row22|row23 -----|-----|---- into: Col1 | r12 | r22 -----|-----|---- Naturally, I would have to use "PIVOT". Except, when using the pivot functionality I have to...
  6. brucegonewild

    handling window.closed

    This must be super easy for you javascript wizards! here's my code: var myHandle = window.open(url); if (myHandle.closed) { alert("aloha"); } Just a note, myHandle is a local function variable. Is there an onClosed event that I can handle? Any help is much apreciated!!
  7. brucegonewild

    Calling a javascript function from Code-behind...

    How can I call a javaScript function that I've registered through this.Page.RegisterClientScript("key", scriptText)? To be more precise, I need to pop up an error message (an alert) when a SystemException occurs in my code behind. Ideas? cheers!
  8. brucegonewild

    Auto Generated datasets and Formul field in DB

    Hi there... So our company has decided to continue on using the dreadfull generated datasets that come with .NET (instead of using something like entity-spaces etc)... In any event, I have a field in my DB-Table which is a "Computed field". Meaning, its value is calculated. So obviously when...
  9. brucegonewild

    Adding <asp:ListItem> to <asp:dropdown> from Javascript

    hey there, So I have this javascript function that does an Ajax call to get a bunch of data... this part is fine... I get the following (from my ajax-responseText), and I thought I could simply populate my drop-down by setting its innerHtml (or innerText) to responseText... no luck. here's what...
  10. brucegonewild

    Accessing HTML-Controls...

    Hi there, Firstly, I am quite clear about the differences between the Server-side and client-side controls and how the code in the server and the one on the client-side are totally different :) Now as for my question: I have 3 web-user controls, call them: uc1, uc2, uc3. I have a main page to...

Part and Inventory Search

Back
Top