Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~651 People Reached
Favorite Tags
Member Avatar for cjswanson1355

I'm trying to make the following piece of code to work. [CODE]Login LoginControl = (Login)PreviousPage.FindControl("Login1"); if (LoginControl != null) { TextBox UserName = (TextBox)LoginControl.FindControl("UserName"); if (UserName != null) { Label1.Text = UserName.Text; } } else { Label1.Text = "Cannot find user name in Login control."; }[/CODE] This is an example …

Member Avatar for stbuchok
0
101
Member Avatar for cjswanson1355

Right now i am trying to implement a vector class. However, i can't seem to get this to compile correctly. I can declare one in my main so I know the library exists, so what is going on here? [code] #ifndef _TABLE_HASH__ #define _TABLE_HASH__ #include <vector> #include <iostream> template <typename …

Member Avatar for siddhant3s
0
550