Click here to Skip to main content
15,897,122 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to display html File into IFrame--need urgent help [modified] Pin
Vishnu Narayan Mishra22-Nov-07 19:41
Vishnu Narayan Mishra22-Nov-07 19:41 
AnswerRe: How to display html File into IFrame--need urgent help Pin
Vasudevan Deepak Kumar22-Nov-07 19:48
Vasudevan Deepak Kumar22-Nov-07 19:48 
AnswerRe: How to display html File into IFrame--need urgent help Pin
N a v a n e e t h22-Nov-07 19:58
N a v a n e e t h22-Nov-07 19:58 
GeneralRe: How to display html File into IFrame--need urgent help Pin
Vishnu Narayan Mishra22-Nov-07 20:07
Vishnu Narayan Mishra22-Nov-07 20:07 
GeneralRe: How to display html File into IFrame--need urgent help Pin
N a v a n e e t h22-Nov-07 20:20
N a v a n e e t h22-Nov-07 20:20 
GeneralRe: How to display html File into IFrame--need urgent help Pin
Vishnu Narayan Mishra23-Nov-07 1:29
Vishnu Narayan Mishra23-Nov-07 1:29 
GeneralRe: How to display html File into IFrame--need urgent help Pin
Vasudevan Deepak Kumar22-Nov-07 20:55
Vasudevan Deepak Kumar22-Nov-07 20:55 
GeneralRe: How to display html File into IFrame--need urgent help Pin
Vishnu Narayan Mishra23-Nov-07 1:30
Vishnu Narayan Mishra23-Nov-07 1:30 
there is no issue regarding this GetClientSideControl() function,This function simply return id of any control. It is running successfully.It is not mandatory to use Iframe, we can also use any other control, do you know any other control?
I am sending the GetClientSideControl() code.. Tell me soon...if you find the solution.

function GetClientSideControl(document,ControlId)
{
var ctl;
var d=document.all;
var intLength=document.forms[0].length;
var i=0;
var id='';
for(i=0;i<intLength;i++)
{
id=document.forms[0].item(i).id;
if (id==ControlId)
{
ctl=document.forms[0].item(i);
return ctl;
}else
{
arr=id.split("_");
for(j=0;j<arr.length;j++)
{
if (arr[j]==ControlId)
{
ctl=document.forms[0].item(i);
return ctl;
}
}
}
}
return ctl;
}
QuestionAutoComplete Pin
kirthikirthi22-Nov-07 19:41
kirthikirthi22-Nov-07 19:41 
AnswerRe: AutoComplete Pin
Michael Sync22-Nov-07 19:54
Michael Sync22-Nov-07 19:54 
QuestionProblem in Runtime format cell Pin
Sun Rays22-Nov-07 19:32
Sun Rays22-Nov-07 19:32 
AnswerRe: Problem in Runtime format cell Pin
Imran Khan Pathan22-Nov-07 19:44
Imran Khan Pathan22-Nov-07 19:44 
GeneralI have already checked all posibilities Still the same problem Pin
Sun Rays22-Nov-07 19:45
Sun Rays22-Nov-07 19:45 
AnswerRe: Problem in Runtime format cell Pin
N a v a n e e t h22-Nov-07 20:00
N a v a n e e t h22-Nov-07 20:00 
GeneralRe: Problem in Runtime format cell Pin
Sun Rays22-Nov-07 20:04
Sun Rays22-Nov-07 20:04 
Questionalert in asp.net Pin
Milind Panchal22-Nov-07 19:16
Milind Panchal22-Nov-07 19:16 
AnswerRe: alert in asp.net Pin
Michael Sync22-Nov-07 19:21
Michael Sync22-Nov-07 19:21 
AnswerRe: alert in asp.net Pin
Vasudevan Deepak Kumar22-Nov-07 19:22
Vasudevan Deepak Kumar22-Nov-07 19:22 
QuestionHow to set date format in itemtemplate? [modified] Pin
samerh22-Nov-07 19:07
samerh22-Nov-07 19:07 
AnswerRe: How to set date format in itemtemplate? Pin
Vasudevan Deepak Kumar22-Nov-07 19:25
Vasudevan Deepak Kumar22-Nov-07 19:25 
GeneralRe: How to set date format in itemtemplate? Pin
samerh22-Nov-07 19:38
samerh22-Nov-07 19:38 
QuestionHow to Change label text in Master Page Pin
Rinki Mukheraji22-Nov-07 18:41
Rinki Mukheraji22-Nov-07 18:41 
AnswerRe: How to Change label text in Master Page Pin
Sun Rays22-Nov-07 18:55
Sun Rays22-Nov-07 18:55 
AnswerRe: How to Change label text in Master Page Pin
Rinki Mukheraji22-Nov-07 19:38
Rinki Mukheraji22-Nov-07 19:38 
AnswerRe: How to Change label text in Master Page Pin
Vasudevan Deepak Kumar22-Nov-07 19:47
Vasudevan Deepak Kumar22-Nov-07 19:47 

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.