Click here to Skip to main content
15,919,479 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Data Grid Pin
wEb GuRu...19-May-07 3:55
wEb GuRu...19-May-07 3:55 
GeneralRe: Data Grid Pin
Khan.Bangash19-May-07 4:12
Khan.Bangash19-May-07 4:12 
GeneralRe: Data Grid Pin
enjoycrack19-May-07 23:18
enjoycrack19-May-07 23:18 
Questionretrieving latitude and logitude from database using java script in asp.net Pin
Ashok Thakur19-May-07 2:32
Ashok Thakur19-May-07 2:32 
AnswerRe: retrieving latitude and logitude from database using java script in asp.net Pin
enjoycrack19-May-07 6:00
enjoycrack19-May-07 6:00 
GeneralRe: retrieving latitude and logitude from database using java script in asp.net Pin
Ashok Thakur20-May-07 18:26
Ashok Thakur20-May-07 18:26 
QuestionSiteMap Navigation based on Querystring Pin
jithbiz003319-May-07 1:54
jithbiz003319-May-07 1:54 
QuestionWhat is wrong ? Pin
A kamath19-May-07 1:11
A kamath19-May-07 1:11 
I am trying to do a search. When I type a character inside the textbox it should take all the feild value which starts with that character. Below code it is not showing any error, but not binding to the datagrid.

string s = "%S" + TextBox5.Text + "%";
string d = "SELECT field1, field2,... FROM OUTSTANDING WHERE field1 LIKE '"+ s +"'";
try{
OdbcCommand CMD = new OdbcCommand(d, c);


DataSet DT = new DataSet();
c.Open();
OdbcDataAdapter a = new OdbcDataAdapter(CMD);
CMD.ExecuteNonQuery();

a.Fill(DT, Tablename);


GridView1.DataSource = DT;
GridView1.DataBind();
}

AnswerRe: What is wrong ? Pin
Christian Graus19-May-07 1:42
protectorChristian Graus19-May-07 1:42 
GeneralRe: What is wrong ? Pin
A kamath19-May-07 2:20
A kamath19-May-07 2:20 
QuestionEditable Combobox/ Dropdownlist Pin
Rajiya19-May-07 0:43
Rajiya19-May-07 0:43 
AnswerRe: Editable Combobox/ Dropdownlist Pin
Christian Graus19-May-07 1:43
protectorChristian Graus19-May-07 1:43 
GeneralRe: Editable Combobox/ Dropdownlist Pin
Rajiya19-May-07 3:16
Rajiya19-May-07 3:16 
QuestionForm Authentication Pin
248912818-May-07 21:30
248912818-May-07 21:30 
Questioncloning a website Pin
IrfanHaleem18-May-07 20:37
IrfanHaleem18-May-07 20:37 
AnswerRe: cloning a website Pin
Christian Graus19-May-07 1:44
protectorChristian Graus19-May-07 1:44 
QuestionProblem while opening MS-Word files using APIs Pin
Abhishek Joshi18-May-07 20:05
Abhishek Joshi18-May-07 20:05 
AnswerRe: Problem while opening MS-Word files using APIs Pin
koolprasad200319-May-07 0:55
professionalkoolprasad200319-May-07 0:55 
QuestionExport datagrid values to TextFile(CSV Format) Pin
jeya krishnan.v18-May-07 18:48
jeya krishnan.v18-May-07 18:48 
AnswerRe: Export datagrid values to TextFile(CSV Format) Pin
wEb GuRu...19-May-07 3:36
wEb GuRu...19-May-07 3:36 
QuestionDataGrid Pin
kumarjammula18-May-07 17:27
kumarjammula18-May-07 17:27 
AnswerRe: DataGrid Pin
enjoycrack18-May-07 17:32
enjoycrack18-May-07 17:32 
GeneralRe: DataGrid Pin
kumarjammula18-May-07 17:44
kumarjammula18-May-07 17:44 
GeneralRe: DataGrid Pin
enjoycrack18-May-07 17:47
enjoycrack18-May-07 17:47 
AnswerRe: DataGrid Pin
Sathesh Sakthivel18-May-07 17:59
Sathesh Sakthivel18-May-07 17:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.