Search results for query: *

  • Users: btisdabomb
  • Content: Threads
  • Order by date
  1. B

    Opening a PDF File

    I have an ASP.NET page that creates a set of .PDF files. It then appends them into one big PDF file and saves them to a location on a server. What is the best way to open this new file in Adobe and still have the .aspx page running?
  2. B

    Sorting a String Array

    I have a sting array that I need to sort in a certain order. The array can contain but may not always contain each of the following... CoverPage TOC ReportName1 ... ReportName10 These items are in the array in random order. I need to sort them in the order listed above. The array might only...
  3. B

    Appending Byte() to another Byte()

    I have two byte() arrays Dim result As Byte() = X Dim result2 As Byte() = Y I need to append result2 to result. How can I do that? I essentially need... result3 = result + result2
  4. B

    Adding attributes

    I am adding attributes to some textboxes during runtime using this code... txtOrgName.Attributes.Add("onfocus", "Remove();") txtOrgName.Attributes.Add("onblur", "Add();") txtOrgName.Attributes.Add("onkeydown", "KeyDownHandler(btnFindOrg);") txtOrgName.Attributes.Add("oninput"...
  5. B

    TextBox help limit input characters

    Is it possible to now allow certain characters to be entered into a textbox while the user is typing them in?
  6. B

    A potentially dangerous Request.Form value was detected from the client

    Whenever the character < is entered into any field I get an error saying... A potentially dangerous Request.Form value was detected from the client. I realize that the .NET framework is throwing the error because it can be interpreted as html code that could potentially be harmful. With one of...
  7. B

    string to xml

    I'm not sure if this is the correct forum to post this but here it is anyways... I am using a webservice that returns a string. The string is in xml format. How do I convert that into something in xml where I can parse through it? Or if there is an easier way to parse it let me know. Here is...
  8. B

    Formatting and Integer

    Is it possible to format an integer without converting it to a string? I want to convert a number like 4 to 0004. I know I can do this using int.ToString.PadLeft(4, "0"c) but is there a way to do this without converting it to a string or other type variable?
Back
Top