Hai, I have datas in a table,i fetched it through the dataset,now i want to convert it as .CSV format in Asp.net(c#). or How to Convert a XML file to .CSV format -Asp.net(c#) Thanks m.s.s.kumar
senthil_rajesh_kavin
Posts
-
How ro Convert a XML file into .CSV format. -
where the database is located?[No Message]
-
How to Install .dll files in the Registry?ya,using dependency walker i able to open an .dll file.how to register?,what is the use of dependency walker?.i didn't work before related to .dll files.
-
How to Install .dll files in the Registry?The Software is SIM card Reader.We are creating the Real time WebApplication for the Mobile users.In particular Asp.net Page Having a link Which Calls that sIM CARD Reader Software.But the error was created that (one of the dll).dll was required.But that dll already with in that folder.we are get confused.plz suggest me a suitable solution to run that software in asp.net page link.
-
How to Install .dll files in the Registry?Actually i got the software which contains .dll and an .exe files ,how to find that .dll files is self registerable or not?.i want to execute the software through the HTML Link in ASP.NET.Plz guide me.
-
How to Install .dll files in the Registry?I also did like that ,but error message occured that " .dll was loaded but unable to find the Entry point.so it was unable to registered.".
-
How to Install .dll files in the Registry?Hai, Plz anyone give the solution for ,How to install .dll files in the windows Registry using Regsvr32 ? Please Clearly state the steps for installation.
-
plz solve my problemhai, I have a software in CD which contains .dll and an .exe of a software.I copied that software folder and put inside of a asp.net application and create a link to execute the software.but it didn't work.plz give me the solution. Example: --------- <Run the Software> it gives the error that .dll files are needed to execute. I made a folder and put both .dll and .exe in that,but error created. please give the alternate solutions to execute the software through the Link in .net.
-
how to execute an .exe file in asp.net application?hai, I have a software in CD which contains .dll and an .exe of a software.I copied that software folder and put inside of a asp.net application and create a link to execute the software.but it didn't work.plz give me the solution. Example: --------- <Run the Software> it gives the error that .dll files are needed to execute. I made a folder and put both .dll and .exe in that,but error created. please give the alternate solutions to execute the software through the Link in .net.
-
what is the solution for this?How it should be Acheived? Please tell.
-
what is the solution for this?sir, i made the page_load as public,then the results shown below. public partial class Default2 : System.Web.UI.Page { public void Page_Load(object sender, EventArgs e) { TextBox t1 = new TextBox(); t1.ID = "TextBox1"; form1.Controls.Add(t1); } protected void Button1_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection("Server=localhost;uid='sa';pwd='sa';DataBase=master"); SqlCommand com=new SqlCommand("insert into table1 values('"+TextBox1.Text+"')",con); SqlDataReader rr=com.ExecuteReader(); } } ---------------------------- CS0103: The name 'TextBox1' does not exist in the current context Line 24: { Line 25: SqlConnection con = new SqlConnection("Server=localhost;uid='sa';pwd='sa';DataBase=master"); Line 26: SqlCommand com=new SqlCommand("insert into table1 values('"+TextBox1.Text+"')",con);//this line in Red Color(error portion) Line 27: SqlDataReader rr=com.ExecuteReader(); Line 28:
-
inside the values in the DropdownlistYou can add the values inside of the dropdownlist by in asp.net(c#) void page_load() { -------- --------- dropdownlist1.Items.Add("INDIA"); dropdownlist1.Items.Add("CHINA"); dropdownlist1.Items.Add("U.S.A"); dropdownlist1.Items.Add("U.A.E"); -------- ----- }
-
How to access ID of a Dyanamic control?sir, i made the page_load as public,then the results shown below. public partial class Default2 : System.Web.UI.Page { public void Page_Load(object sender, EventArgs e) { TextBox t1 = new TextBox(); t1.ID = "TextBox1"; form1.Controls.Add(t1); } protected void Button1_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection("Server=localhost;uid='sa';pwd='sa';DataBase=master"); SqlCommand com=new SqlCommand("insert into table1 values('"+TextBox1.Text+"')",con); SqlDataReader rr=com.ExecuteReader(); } } ---------------------------- CS0103: The name 'TextBox1' does not exist in the current context Line 24: { Line 25: SqlConnection con = new SqlConnection("Server=localhost;uid='sa';pwd='sa';DataBase=master"); Line 26: SqlCommand com=new SqlCommand("insert into table1 values('"+TextBox1.Text+"')",con);//this line in Red Color(error portion) Line 27: SqlDataReader rr=com.ExecuteReader(); Line 28:
-
How to access ID of a Dyanamic control?hai Gautham sir, i already tried like that, TextBox tt=new TextBox(); tt.ID="TextBox1"; but it gives compiletime error that "No such TextBox1 Control available" (that error locates the-- insert_click()) void insert_click() { String str="insert into table4 values('"+TextBox1.Text+"')"; SqlConnection.......... } bcz only in the runtime the ID 'TextBox1' assigns to the dynamic control(TextBox) then how we can specify the name during Compilation. try like that surely u got the error,plz help me sir. -- modified at 4:32 Tuesday 6th March, 2007
-
How to access ID of a Dyanamic control?hai friends, How to access the value of the Dynamically created control in asp.net (c#)? suppose i create void page_load() { TextBox t1=new TextBox(); form1.Controls.Add(t1); } Now i want to insert the value of the textbox in the database,but ID of the TextBox not known. void insert_click(Object o,Sender e) { String s1=insert into table4 values(here i want to access the ID of the TextBox); //Sql Connections......... } plz,Reply if u have known.Thank u Friends.