Search results for query: *

  1. M

    Question XML Header

    I'm new to XML and Trying to Parse through an XML File. I need to read the value of a Header Element. Example: <wsa:Action> is the element within the Header part of the XML that I need to Read. Not sure how to do this. Any help wouold greatly be appreciated.
  2. M

    IE options

    Can the Send Page by Email and Send Link by Email options be disabled using javascript?
  3. M

    ConfirmButtonExtender

    I need to execute a button from within another button. I'm using the following code: CmdID(sender, e) This does fire the code from the correct button. My problem is I'd like to add an AJAX ConfirmButtonExtender to that button, but it doesn't execute the ConfirmButtonExtender when I use...
  4. M

    Invalid Page State IndexOutOfRangeException

    I've just recently started getting the following error and I do not understand how or why! Can anyone please help? thanks!!! System.IndexOutOfRangeException: Index was outside the bounds of the array. at System.Web.UI.LosFormatter.DeserializeValueInternal() at...
  5. M

    Forms Authentication and Active Directory

    I'm new to forms authentication and Active Directory. I'm trying to add additional membership provider entries to my web config file to pull from different connectionstrings (which are pointing to different ou's within our Active Directory). Is it possible for the Login control for asp.net 2.0...
  6. M

    Closing Web Page

    JohnM, I got it to work to some degree.....it shows the message, but then displays another message and allows the user to close the page. Any way to prevent this?
  7. M

    Closing Web Page

    JohnM, Thanks for the reply. I tried the javascipt code you sent and still the page closes. I am getting on error on the html side saying that onbeforeunload is not an attribute of the body element. any thoughts?
  8. M

    Closing Web Page

    Sorry. I sure that would help. Here's what I need to do. I have to listboxes on a webpage. When a user clicks on one list and it populates the second list and removes record from first list. Now, I what to check to make sure nothing is in the second list before the page closes. If the...
  9. M

    Crystal Report Document Print options

    After a little further experimenting, I was able to accomlish setting what tray I wanted to pull paper from. Dim crReportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument Dim PrinterSettings As New System.Drawing.Printing.PrinterSettings Dim RptSource As...
  10. M

    Closing Web Page

    I've tried some onunload javascript functions but the page was still closing. Can you give some javascript examples?
  11. M

    Closing Web Page

    When a user clicks the X in upper right corner of web page, to close an aspx web form, is there a way to Check some criteria on the page before allowing the page to actually close
  12. M

    Crystal Report Document Print options

    I"m working on a Web application. Here is my code: Dim CrReportDocument as ReportDocument CrReportDocument = New CrReportDocument CrReportDocument.Load(RptName) CrReportDocument.Printoptions.PaperSource = PaperSource.Manual CrReportDocument.PrintToPrinter(1,False,0,0)
  13. M

    Crystal Report Document Print options

    Trying to print directly to the print using crystal reports. I got it to Print to the printer, but when I try to set the paper source to manual feed, the report still prints. Can anyone Help?
  14. M

    Crystal Export

    When Exporting through code to PDF getting error message System.IO.FileNotFoundException: Could not find file. My Web app is not running on a webserver that has .net installed. Anybody know what I can do to resolve this issue?
Back
Top