Search results for query: *

  • Users: Ice
  • Content: Threads
  • Order by date
  1. I

    Fire server code onchange, without submit

    Hi is there a way to fire server code without the page submitting. This code is simplified for what I want to do later, but I need to call my method without a post. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %> <html...
  2. I

    Keep Fileupload data on change NOT Postback

    Hi I'm writing a multi image upload page. The FileUpload control loads the images and displays them in a preview. The user can then click an image, to remove it, which populates a list I will loop through on PostBack to make sure the deselected images are not saved to my server. So I choose...
  3. I

    List Error on Load Balanced Server

    Hi I'm running text through an IllegalCharacter Class method that runs through a list. I've put it live and now I keep getting this error System.InvalidOperationException: Collection was modified; enumeration operation may not execute. at...
  4. I

    Slow list cycling killing page load

    Hi I have an Illegalcharacter class. In the class I define a list. Each list item has 3 parts. A regular expression and 2 boolean values. I then cycle through a message and apply the IllegalCharacter List to the message. The problem is it's killing my web page. With it page load is between 17...
  5. I

    Getting hidden field value on next page

    Hi I have a hidden value field on a page. On submit I post to a different page. On the page I've posted to I do a Request.Form but I do not get the value just a null value. This is the initial page <div id="booking_content_wrapper"> <form id="mainForm" name="mainForm"...
  6. I

    Insert not working in Stored Procedure

    Hi I have a stored procedure that inserts and returns a value. I've been able to execute the procedure and I get the return value but the INSERT is not working. I'm getting no errors. Why is the INSERT not firing in my stored Procedure? I've checked the Permissions on the tables and the...
  7. I

    Question Extract value from stored procedure that takes a parameter

    Hi I have a stored procedure, which I cannot change (it is used by older programs). It is passed an int of 15 and then an ID is generated and written to a database table. The created ID is then suppose to be selected and returned. The INSERT does not seem to be working. I'm not getting the...
  8. I

    Question Change XML element

    Good Day I have a simple xml document which looks like this. <?xml version="1.0" encoding="utf-8" ?> <DayNo> <dayNum>1</dayNum> </DayNo> I'm using C# and Linq to extract the value from the dayNum element of the document but when I try to set value using my code it bombs below is the code...
Back
Top Bottom