Click here to Skip to main content
15,929,898 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: help me plz... Pin
_AK_4-Sep-06 3:00
_AK_4-Sep-06 3:00 
GeneralRe: help me plz... Pin
pradeep kumarappagari4-Sep-06 3:11
pradeep kumarappagari4-Sep-06 3:11 
GeneralRe: help me plz... Pin
_AK_4-Sep-06 3:14
_AK_4-Sep-06 3:14 
QuestionDisplay the page title dynamically Pin
y_mmohd4-Sep-06 1:18
y_mmohd4-Sep-06 1:18 
AnswerRe: Display the page title dynamically Pin
Jay_se4-Sep-06 2:05
Jay_se4-Sep-06 2:05 
QuestionExporting an external file into a table in oracle using ASP.net Pin
dev_cool4-Sep-06 1:16
dev_cool4-Sep-06 1:16 
AnswerRe: Exporting an external file into a table in oracle using ASP.net Pin
RichardGrimmer4-Sep-06 5:53
RichardGrimmer4-Sep-06 5:53 
AnswerRe: Exporting an external file into a table in oracle using ASP.net Pin
Ramasubramaniam5-Sep-06 3:56
Ramasubramaniam5-Sep-06 3:56 
try this code below, get the data from the oracle database to a datatable, then write the data in a html format on the page.


dtTable = Methodtogetdatatable(); //from the oracle database


string strHTML = "";
//string strStr = common.c_EMPTY;
foreach(DataColumn col in dtTable.Columns)
{
strHTML += "";
//strStr += col.ColumnName + "|";

//Response.Write(col.ColumnName + "\t");
}
strHTML += "";

foreach(DataRow row in dtTable.Rows)
{
strHTML += "";
int intCnt = 0;
foreach(DataColumn col in dtTable.Columns)
{
if ((intCnt % 2) == 0)
strHTML += "";
else
strHTML += "";

intCnt++;
//strStr += row[col.ColumnName].ToString() + "|";
//Response.Write(row[col.ColumnName].ToString() + "\t");
}
strHTML += "";
}
WriteText(strHTML);
" + col.ColumnName + "
" + row[col.ColumnName].ToString() + "" + row[col.ColumnName].ToString() + "

QuestionPassing ImageUrl through QueryString to another WebForm Pin
Vsree4-Sep-06 0:47
Vsree4-Sep-06 0:47 
AnswerRe: Passing ImageUrl through QueryString to another WebForm Pin
_AK_4-Sep-06 1:04
_AK_4-Sep-06 1:04 
GeneralRe: Passing ImageUrl through QueryString to another WebForm Pin
Vsree4-Sep-06 1:22
Vsree4-Sep-06 1:22 
GeneralRe: Passing ImageUrl through QueryString to another WebForm Pin
_AK_4-Sep-06 1:30
_AK_4-Sep-06 1:30 
GeneralRe: Passing ImageUrl through QueryString to another WebForm Pin
Vsree4-Sep-06 1:38
Vsree4-Sep-06 1:38 
GeneralRe: Passing ImageUrl through QueryString to another WebForm Pin
_AK_4-Sep-06 1:45
_AK_4-Sep-06 1:45 
Questionsound Buffering Pin
haytham_mohammad4-Sep-06 0:40
haytham_mohammad4-Sep-06 0:40 
QuestionBuilding web application part by part Pin
welcome_thennu4-Sep-06 0:00
welcome_thennu4-Sep-06 0:00 
AnswerRe: Building web application part by part Pin
_AK_4-Sep-06 1:05
_AK_4-Sep-06 1:05 
AnswerRe: Building web application part by part Pin
Ramasubramaniam5-Sep-06 3:59
Ramasubramaniam5-Sep-06 3:59 
QuestionClear the session cache Pin
Naqeeb Ullah Jan3-Sep-06 23:54
Naqeeb Ullah Jan3-Sep-06 23:54 
AnswerRe: Clear the session cache [modified] Pin
Jay_se4-Sep-06 1:47
Jay_se4-Sep-06 1:47 
Questioncopying data of table (.net) Pin
divaa3-Sep-06 23:52
divaa3-Sep-06 23:52 
AnswerRe: copying data of table (.net) Pin
pjc*4-Sep-06 6:50
pjc*4-Sep-06 6:50 
QuestionLink Button Mystery Pin
Dayekh3-Sep-06 23:45
Dayekh3-Sep-06 23:45 
AnswerRe: Link Button Mystery Pin
_AK_4-Sep-06 1:08
_AK_4-Sep-06 1:08 
GeneralRe: Link Button Mystery Pin
Dayekh4-Sep-06 1:57
Dayekh4-Sep-06 1:57 

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.