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...
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...
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"...
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"...
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...
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...
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...
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...
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...
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...
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...
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...
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..
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.