Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~2K People Reached
Favorite Tags
Member Avatar for Omar123

Hello, I have a WebService that gets a LessonID and returns a list<string> that has all the links of the lesson from access database: [CODE] [WebMethod] public List<string> Lessons(int lessonID) { string lessonsource = ""; string cs = "Provider = Microsoft.Jet.OLEDB.4.0; Data Source= " + GetDBLocation(); OleDbConnection cl = new …

Member Avatar for Omar123
0
1K
Member Avatar for Omar123

Hello, I'm writing a project about exams. The number of answers in the exam are 4. and each one has a RadioButton near it that can be pressed to choose the answer. What I do to check which of the radio buttons is selected is that I manually add an …

Member Avatar for Omar123
-1
124
Member Avatar for Omar123

Hello, I wrote all the code and everything works good on the project (web site using Visual studio 2008) that I'm working on, and now the only thing that I have to do is to have at least a simple layout of the webpage I'm doing. I don't know css/html …

Member Avatar for Sodabread
0
94
Member Avatar for Omar123

Hello, I added a button from code and with it i added onclick event. here is the code [CODE] Button button = new Button(); button.ID = link; button.Text = "1"; button.Click += new System.EventHandler(this.button_Click); private void button_Click(object sender, EventArgs e) { System.Web.UI.WebControls.Image im = new System.Web.UI.WebControls.Image(); im.ImageUrl = ((Button)sender).ID; //ID …

Member Avatar for Freon22
0
139
Member Avatar for Omar123

Hello, I'm working on a project where I have in a form 5 to 10 buttons, everything manually added (from code) and I need to see which button was clicked on. [CODE]Button Remove = new Button(); Remove.Name = i.ToString(); Remove.Text = "Remove"; Remove.Click += new EventHandler(Remove_Clicked()); i++; void Remove_Clicked(object sender, …

Member Avatar for Sodabread
0
169