Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
20% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
0 Endorsements
~9K People Reached
Favorite Forums
Member Avatar for neetika reddy

Hi, I am trying to get TextBox. Whenever I click on the button I should get a TextBox. Here is my code. But I am getting only one TextBox. Collapse private void button1_Click_1(object sender, EventArgs e) { txtRun = new TextBox(); txtRun.Name = "txtDynamic"; txtRun.Location = new System.Drawing.Point(20, 18); txtRun.Size …

Member Avatar for LyndonBroz
0
5K
Member Avatar for miragefighter

Hi, I'm using asp.net together with vb.net. I am trying to develop: 1. a login page in asp.net, once user enter the correct username and password, this will be directed to the User page. 2. In User page, there will be some text fields of the user (eg. name and …

Member Avatar for larashaikh
0
3K
Member Avatar for neetika reddy

Hi, How to edit,update,delete inside the datagridview control using windows application.. Any help would be appreciated...

0
48
Member Avatar for neetika reddy

Hi I have a doubt on creation of my sql database..can anyone please explain me.. I have two dropdownlist named department and semester... In department i have 8 branches and in Semester i have 8 semesters..If i select department and semester details regarding that branch and semester should appear like …

Member Avatar for Lusiphur
0
90
Member Avatar for hunfa

[code]public partial class Form : System.Web.UI.Page { private void connecttodb() { OracleConnection conn = new OracleConnection(); conn.ConnectionString = "User Id=WLL; Password=wll; Data Source=WLL;"; } protected void Page_Load(object sender, EventArgs e) { if(!Page.IsPostBack) { String CommandText = "Select DepartmentID,Department from its_department;"; OracleDataReader odr = GetDr(CommandText, ConnectionString); DropDownList1.DataSource = odr; DropDownList1.DataTextField ="Department"; …

Member Avatar for Lusiphur
0
70
Member Avatar for neetika reddy

i have written this in else condition ..can anyone please check this... [CODE] else if (DDlDepartment.SelectedValue != null && DDLStaffid.SelectedValue != null) { con.Open(); string str1 = DDlDepartment.SelectedValue; string str2 = DDLStaffid.SelectedValue; SqlDataAdapter ad1 = new SqlDataAdapter("Select * from ManstaSalary where Department='" + str1 + "'and StaffID= '" + str2 …

Member Avatar for Geekitygeek
0
396
Member Avatar for neetika reddy

Iam Having three dropdown lists named Department,StaffID,StaffType,textbox Name and one submit button...If I select Department as BEMechanical and click the button i have to get all the details regarding that branch and if i select Department,StaffID,stafftype and name i should get the details of the selected one.Any one plz help …

Member Avatar for Geekitygeek
0
151