Web Forms :: Hashtable Within Another Hashtable?
Dec 15, 2010
i'm retreiving data(API) with JSON format and i'm parsing it inside a hashtable,it seems like some specific keys have a value= hashtable(or arraylist!)below is how i'm extractin the the first layer value
[Code]....
the problem is where the values are equal to arraylist i'm not able to extract themIs there any way to extract the second layer keys and values?<i> (btw i'm very new to hashtables and arraylists)</i>
View 3 Replies
Similar Messages:
Jan 24, 2016
I have a screen and in the code behide i have private class created inside the page
In this class i have a Hashtable
i will like to pass this hashtable from one screen to another by Querystring
View 1 Replies
Jun 7, 2010
I am trying to fix the size of the Hashtable with following code.
[code]....
I have fix the size of this Hashtable is 2 but I can add more than 2 elements in this, why this happen, I am doing somthing wrong?
I have tried to find out is this Hashtable have fix size of not with hashtable.IsFixedSize, it always returns false
View 2 Replies
Feb 26, 2010
I am building a Asp.net Application. I need to save a HashTable in a session.
At page load i am writing
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
Session["AttemptCount"]=new Hashtable(); //Because of this line.
}
}
Here problem is, when a user refresh the page, session["AttemptCount"] also get refreshed.
I want to know where should I declare
Session["AttemptCount"]=new Hashtable();
So that my seesion do not get refeshed.
EDIT In Global.asax, this session will get started, as soon as user opens the website. I want to creat this session only if user go to a particular page. i.e Login.aspx
View 4 Replies
Aug 12, 2010
I have a problem while checking a hashtable value. In the code below I am storing 60 values in the hashtable "hash". One of the values is (or can be) Null. I am checking each entry against its corresponding entry in hashtable "hash1", to see if they match each other. If they don't match I want to check if the value in "hash" is Null, but I can't catch it - it's falling through the 'else' part). How can I overcome this problem?
[code]....
View 3 Replies
Mar 6, 2012
reasking some basics to clear out from this messed up things
1) difference between using normal array & using hashtable in terms of storage, access speed
2) is it possible to store values from serverside controls in javascript on client side in a normal array variable ( values can be of different types) even on postback??.
if yes how
3) currently i have hidden fields which stores values on client side and on postback saves in hashtable ie saving data on server & not on client.
View 1 Replies
Mar 29, 2011
1) As per my understanding, Session variables like HashTable and another variable in Session must be initialized. The best place as per my knowledge is Sesson_Start Event. But at some post its written that we must do that in Application_Start. I think it is not true, as that could lead to problems with different user sessions. Reference is this [URL] Let me know about the concept.
2) Storing variables like string, boolean and etc in Session is slower than storing objects in Session like HashTable, Arrays etc.. becuase they dont require boxing and unboxing. Is that true? Reference. [URL]
View 2 Replies
Nov 26, 2010
We are using static hashtable in webservice for sharing common data among different users. Is it safe? Is there any better way?
View 1 Replies
Mar 10, 2011
L server into one datatable inside DBLayer.I want to return this table as Hashtable inside BLL, and I want to show the result inside GridView inside Presentation Layer.
View 2 Replies
Feb 22, 2011
I have defined a public static HashTable. It stores data for a few seconds of runtime, and then data disappears, and then the HashTable becomes null.What is the issue and how do I solve it?
View 1 Replies
Feb 5, 2010
I am looking for opinions and best coding practices.I need to get info from a database with a query such as SELECT this, that FROM MyDB (returning 2 fields). Would it be wrong to use a hashtable for temporary storage?Is there a better way to accomplish the same thing? What about if I am returning more than 2 fields, would it be best to step up to a DataSet or something?
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
GetData();
[code]...
View 7 Replies
Jun 15, 2013
how to show the progress bar when file is upolading
in windows application with C#
View 1 Replies
May 7, 2015
URL....I use this one as my login, and I addes hyperlink for Forgot Password. But why I can't access the FORGOT PASSWORD.aspx for every time I click it. And when I login it redirects t Forgot Password.How I can access it without logging in?
View 1 Replies
Apr 13, 2010
In our application we are using forms authentication, we have given defaulturl also in the config file. But the problem is that it is not getting redirected to the default url when the session timeout is occuring.
View 2 Replies
Mar 21, 2010
I have been presented with numerous word and excel docs. The goal is to put them online and bind to a database for the fields and also to store data for easy searching and reporting.
Has anyone done anything like this before?
I know the easy solution would be to create a database table for each particula form and also an ASP.net page for each form.
But then there are problems like printing and correct formating so it fits on the page, spaning multiple pages and so on.
And also is there any advice on how to write to PDF straight from the page?
View 1 Replies
Jan 18, 2011
I have a treeview named Treeview1 with checkboxes. I want the child checkboxes to be checked if parent is checked.
I am trying to use a simple code that I found on msdn :
[Code]....
For some reasons I got this error and I really dont understand why:
Type 'System.Windows.Forms.TreeViewEventArgs' is not defined.
warning BC40056: Namespace or type specified in the Imports 'System.Windows.Forms' doesn't contain any public member or cannot be found. Make sure the namespace or the type is defined and contains at least one public member. Make sure the imported element name doesn't use any aliases.
View 3 Replies
Jan 25, 2010
Really getting better with VS, but I've mostly been displaying data. I'm on a new project and now and I have a lot of data entry forms to create. I created a form to enter data into an access db and got it working. I thought it would be cool to add an edit button that fired a gridview to load on the same page, under my original forms, so that that they could load up the data and edit or delete mistakes. But when I try to update the gridview, it also tries to post the original forms (text boxes), which fail because there is no data in them, and I get an error.
What is the proper way to handle this in asp.net? I'm sure this is kind of a common issue. I've done some searching, but the search terms, like forms and gridview, are kind of generic and I'm not coming up with anything useful. I just need a more experienced person to point me in the right direction and I'll get it figured out.
View 9 Replies
Jun 16, 2013
I do have combo box on my page where the items are retrieved from database.
I have an link label which leads to new form to add value for corresponding column in database.
After add the value, when i click refresh on my current page, the values in combo box must be updated.
I have used this
private void button3_Click(object sender, EventArgs e)
{
this.Refresh();
}
View 1 Replies
Nov 11, 2010
We have a number of projects and across projects cerrtain forms are duplicated.
Is there a way that I can create one form and reuse it across multiple projects?
View 2 Replies
Feb 19, 2011
I am using forms authentication, and for some reason it shuts off my images. I have tried putting them in the same directoy, and still nothing.
If I turn off forms authentication, they come back alive so I know my urls are correct.
View 2 Replies
Feb 24, 2011
My images show up find in design time, and if I have logged in and go back to the page, they show, but upon initial login,they aren't visible. What do I need to do?
View 1 Replies
Mar 7, 2011
In windows forms, there is the "show data sources" under the "data" menu item, and I love it because I can drag and drop the fields I need onto the form and it makes the control automatically.In web forms however, this option isn't there. Why? I try to drag and drop fields from the "server explorer" but it generates grids, I don't want grids I just want to drag and drop the text boxes or checkboxes etc.
View 4 Replies
Apr 8, 2010
Created in VS2008
The login page is created with the masterpage and it has the header picture.
After Logout or run FormsAuthentication.SignOut();
The login page is not showing correctly with the header (from master page).
And the setting on the web.config as below:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" name=".ASPXFORMSAUTH">
</forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>
Is there any reason why the header from masterpage can not be viewed from the login page?
View 1 Replies
Jan 6, 2011
Form1 is for the administrator. It has 5 fields. Field1 has a value for which the other values give details about it. This 5 fields are stored in a table. Form2 is for a user and its a data entry form. This forms has 12 fields. Each label in the form2 corresponds to the value of Field1 in form1. If suppose the admin fields 10 times the form1. The 10 labels of form2 are filled with values of field each time. The above is what I want to achieve. Also the two text box corresponding to the remaining two labels should be disabled for user.
View 2 Replies
Sep 2, 2010
I create a windows forms control library project, And build it. then i want it's dll to my web project, for this i used object tag which can display it on page. I made reference of dll to my project.did the following coding.
<object id="conlib1" classid="clsid:{2483F435-673D-4FA3-8ADD-B51442F65349}"
codebase="Default.aspx" >
<param name="F:sandyWindowWincontrolLibWincontrolLibinDebugWincontrolLib.dll" value="WincontrolLib.dll" />
</object>
although page is asking to install but after that my control should be displayed but nothing is to be shown there.
View 7 Replies