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 bkrike 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: *

  • Users: tsisher
  • Content: Threads
  • Order by date
  1. tsisher

    Keep updating Session object with a List<string> in c#

    I have a Session object Session["MyListObjects"] = null; When a user hits a button I want to creat a List<string> object and add to session object. Let's say if user hits the button 10 times, I would get 10 List<string> ojects and add to Session["MyListObjects"] and Finally I want to read...
  2. tsisher

    Calculate div position

    say I have multiple controls in different div tags (textbox, textarea, button) and through css I want to layout these controls on the form at different layout position. eg : one control could be adjacent to the other or some control right under different control or some other position What's...
  3. tsisher

    Change the color of lines of text box lines using javascript

    Is it possible to do this ? Let me explain this. // aspx <asp:TextBox runat="server" ID="txtOld" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:TextBox runat="server" ID="txtNew" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:Button Text="Compare"...
  4. tsisher

    Comapring two &lt;asp:TextBox&gt; lines

    Is it possible to do this ? Let me explain this. // aspx <asp:TextBox runat="server" ID="txtOld" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:TextBox runat="server" ID="txtNew" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:Button Text="Compare"...
  5. tsisher

    Please help with this

    I have a web form where I call a method, if page is not post back some thing like if (!IsPostBack) FillCustomerDetails(); and FillCustomerDetails call a third party component and get a string back. I chop that string fill few asp:TextBox like txtAddress.Text = obj.Address...
  6. tsisher

    A simple question

    Hi, I have a win form where users get registered and can update/modify details as well. On this form I have certain fields (like email, country, etc.). The important field is email. Why important? This gets checked against database whether this email address already exists or not. 1) New User...
  7. tsisher

    Create excel file c#

    Hi, I am working on c# application and the requirement is when I get data from the database, I have to do few calculations and based on those business logics I have to create a new excel file and save some data on the excel file. Solution I am after, 1) How to create an excel file within...
  8. tsisher

    UnArchive eats up all the memory or system resources

    Hi, Unarchiving sucks all the memory or system resources, as i don't know what is going on. I have a utility which unarchive hundreds of files but while unarchiving the files it does not allow me to do any thing. Example, while unarchiving, even I open internet explore it does not even allow...
  9. tsisher

    How do avoid flickering win form

    Hi, I have a method which process the files(read/create many files) which I am calling like that.. Thread t = new Thread(new ThreadStart(ProcessFiles)); t.Start(); ProcessFiles() is the method which does all the file work. Every think works fine but my win form keeps flickering which I...
  10. tsisher

    Is there any way of doing this..

    I have got two User controls 1) ListEmployee.ascx(Has got a DataGrid to list all the Employees and a View Button to show the Detail) 2) DetailEmployee.ascx(should display the employee list if pass a Employee ID) Now I have got Two .aspx pages 1) ListEmployee.aspx (Which Has got...
  11. tsisher

    How to do this bit...

    Is there any way I can capture form data if user closes the browser ? I have got a form where a user fills the form fields but never hits the 'Submit' button and closes the browser. I still want to capture the form data AND SAVE IT INTO THE DATABASE. This is required for some sort of history...
  12. tsisher

    Please help in these dynamic style sheets

    Say I have got a dropdown list having list of different style sheet. What I want is 1) When a user select any one of these style sheets from the drop down list and it should apply to the whole page. 2) If the User closes the window the system should remember his last style sheet so that when...
  13. tsisher

    Apply styles at run time

    Is there any way of allowing the user to select from the dropdown list of font size and dropdown list of color to pick up there font size and color and the web page displays accordingly.. Thanks a lot..

Part and Inventory Search

Back
Top