I created a DLL file in c# 2.0 . After some days i make some change in (opened in 2.0 again) dll and compiled it. may i know it will be creating new version or will be previous version . Thanks
Sujit
I created a DLL file in c# 2.0 . After some days i make some change in (opened in 2.0 again) dll and compiled it. may i know it will be creating new version or will be previous version . Thanks
Sujit
Hi friend, it's urgent I am using some DLL file (LpiCom_6_0.LPOrderPart.dll) in asp file for bulk payment charging (its support by LinkPoint). Its work fine but after some days its not work means registration failed. Again when we registered.it's work fine. What can be problem. If you have any idea then please help me i am facing from six month. Thanks
Sujit
Hi friend Basically i have have a product table which have one primary key item_id. i use this statement for fetching data in dataset ( select itemcode,.......... from table) then i make a primary key in dataset on itamcode.after updating all data in dataset. i use da.update(ds) then it generate error. Where i am wrong please suggest me thanks
Sujit
n my C# program, I get the following error when trying to write to a table: "Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information." i use this code : da = new OracleDataAdapter(command, con); da.MissingSchemaAction = MissingSchemaAction.AddWithKey; comB = new OracleCommandBuilder(da); da.Fill(ds, "product"); ds.Tables["product"].PrimaryKey = new System.Data.DataColumn[] { ds.Tables["product"].Columns["item_code"] }; comB.GetUpdateCommand(); da.Update(ds, "product");
Sujit
use this to find data from table ds.Tables["CreateAccount"].rows[i]["User_Name"].tostring(); or ds.Tables[0].rows[i]["User_Name"].tostring();
Sujit
Call on page load even it will work properly page load() { bt.Attributes.Add("OnClick", "return window.confirm('Are you sure want to remove this user?');"); }
Sujit
Try by the Page.control
Sujit
here you pass as array may be it solve ur problem
Sujit
Set the message in tooltip properties of control properties
Sujit
Dear friend my question was that i'm adding control at run time not design time then how to handle event of this control. Thanks for reply
Sujit
i have problem, I want to add control at runtime like two checkBox . when i checked first then enable false of second checkedbox. if any friend have answer then send me mail or post message. Thanks sujitvns4u@gmail.com
Sujit
This is solution for you Check it on your system protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DropDownList1.SelectedIndex = 0; DropDownList2.SelectedIndex = 0; } } protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { Response.Write(DropDownList1.SelectedValue); Response.Write(DropDownList2.SelectedValue); }
Sujit