Click here to Skip to main content
15,910,981 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Root folder in a Virtual Directory app Pin
N a v a n e e t h11-Jul-07 20:58
N a v a n e e t h11-Jul-07 20:58 
GeneralRe: Root folder in a Virtual Directory app Pin
Mel Padden11-Jul-07 22:17
Mel Padden11-Jul-07 22:17 
GeneralRe: Root folder in a Virtual Directory app Pin
N a v a n e e t h11-Jul-07 22:31
N a v a n e e t h11-Jul-07 22:31 
GeneralRe: Root folder in a Virtual Directory app Pin
Mel Padden11-Jul-07 22:55
Mel Padden11-Jul-07 22:55 
GeneralRe: Root folder in a Virtual Directory app Pin
N a v a n e e t h12-Jul-07 0:23
N a v a n e e t h12-Jul-07 0:23 
GeneralRe: Root folder in a Virtual Directory app Pin
Mel Padden12-Jul-07 0:30
Mel Padden12-Jul-07 0:30 
QuestionDo anyone solve this error....Missing Parameter values :S Pin
ha_haseebahmad11-Jul-07 20:30
ha_haseebahmad11-Jul-07 20:30 
QuestionStyle sheets are not getting applied. Pin
Rajiya11-Jul-07 20:26
Rajiya11-Jul-07 20:26 
Hi,

I am creating a table using javascript using a recordset.I am applying style sheets and javascript functions to the table. But the stylesheets and javascript functions are not getting applied. My the function for table creation is as follow.

function showReports(){
try{
var objConn;
//var test=document.getElementById("mysheet").cssRules[0].style.color;
var empId = document.getElementById('hdnEmpId');
var aServer = "10.11.50.15";
var uid = "sa";
var pwd = "mis";
var Database = "GSMail";

var conn_str = "DRIVER={SQL SERVER};SERVER=" + aServer + ";UID=" + uid + ";PWD=" + pwd + ";" + "Database=" + Database + ";"
var strHtml ="";
strHtml +="
";
strHtml +="<layer name="\"menu5\"" onmouseout="\"killMenu('menu5')\"" onmouseover="\"checkMenu();\"">";

//Database Connection
var conn = getAdoDb("ADODB.Connection");
conn.open(conn_str, "", "");

//Recordset
var rs = getAdoDb("ADODB.Recordset");
strQuery = "SELECT FolderName FROM EmpFolders WHERE SHOWFOLD=1 AND EMPID=" + empId.value;
rs.open(strQuery, conn, adOpenDynamic, adLockOptimistic);

strHtml += "";
strHtml += "";
if(!rs.bof){
rs.MoveFirst();
while(!rs.eof) {
strHtml += "" + rs.fields(0).value + "";

rs.MoveNext();
}
strHtml += "";
strHtml += "";
alert(strHtml);
}
else{
//No Records.
strHtml += "No Records.";
}
conn.close();
strHtml += "";
strHtml +="<\/layer><\/div>";
document.write(strHtml);
alert(strHtml);

}catch(ex){
alert(ex.message);
}
}


Thanks,


Riz

AnswerRe: Style sheets are not getting applied. Pin
N a v a n e e t h11-Jul-07 20:44
N a v a n e e t h11-Jul-07 20:44 
AnswerRe: Style sheets are not getting applied. Pin
Rajiya11-Jul-07 23:19
Rajiya11-Jul-07 23:19 
Questionopensource asp.net c# or even ajax text chat code and rating system Pin
harryforum11-Jul-07 20:06
harryforum11-Jul-07 20:06 
AnswerRe: opensource asp.net c# or even ajax text chat code and rating system Pin
Sathesh Sakthivel11-Jul-07 20:13
Sathesh Sakthivel11-Jul-07 20:13 
GeneralRe: opensource asp.net c# or even ajax text chat code and rating system Pin
harryforum11-Jul-07 21:22
harryforum11-Jul-07 21:22 
GeneralRe: opensource asp.net c# or even ajax text chat code and rating system Pin
N a v a n e e t h11-Jul-07 22:42
N a v a n e e t h11-Jul-07 22:42 
AnswerRe: opensource asp.net c# or even ajax text chat code and rating system Pin
Imran Khan Pathan11-Jul-07 20:18
Imran Khan Pathan11-Jul-07 20:18 
GeneralRe: opensource asp.net c# or even ajax text chat code and rating system Pin
harryforum11-Jul-07 21:24
harryforum11-Jul-07 21:24 
GeneralRe: opensource asp.net c# or even ajax text chat code and rating system Pin
Imran Khan Pathan11-Jul-07 23:26
Imran Khan Pathan11-Jul-07 23:26 
GeneralRe: opensource asp.net c# or even ajax text chat code and rating system Pin
Pete O'Hanlon12-Jul-07 2:31
mvePete O'Hanlon12-Jul-07 2:31 
QuestionImport Mail Contacts from ASP.Net Pin
neerubee11-Jul-07 19:52
neerubee11-Jul-07 19:52 
AnswerRe: Import Mail Contacts from ASP.Net Pin
Michael Sync11-Jul-07 20:15
Michael Sync11-Jul-07 20:15 
GeneralRe: Import Mail Contacts from ASP.Net Pin
neerubee17-Jul-07 0:24
neerubee17-Jul-07 0:24 
QuestionArithmetic operation resulted in an overflow Pin
saravanan0511-Jul-07 19:40
saravanan0511-Jul-07 19:40 
AnswerRe: Arithmetic operation resulted in an overflow Pin
Sathesh Sakthivel11-Jul-07 19:49
Sathesh Sakthivel11-Jul-07 19:49 
GeneralRe: Arithmetic operation resulted in an overflow Pin
saravanan0511-Jul-07 19:58
saravanan0511-Jul-07 19:58 
GeneralRe: Arithmetic operation resulted in an overflow Pin
Not Active11-Jul-07 20:01
mentorNot Active11-Jul-07 20:01 

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.