Click here to Skip to main content
15,921,454 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionGrouping Pin
Laxmi R30-May-09 1:39
Laxmi R30-May-09 1:39 
AnswerRe: Grouping Pin
Blue_Boy30-May-09 1:42
Blue_Boy30-May-09 1:42 
GeneralRe: Grouping Pin
Baran M30-May-09 10:21
Baran M30-May-09 10:21 
Questionhow to display the next month Pin
Mathew P V30-May-09 1:22
Mathew P V30-May-09 1:22 
AnswerRe: how to display the next month Pin
Blue_Boy30-May-09 1:40
Blue_Boy30-May-09 1:40 
GeneralRe: how to display the next month Pin
Mathew P V1-Jun-09 20:44
Mathew P V1-Jun-09 20:44 
AnswerRe: how to display the next month Pin
Baran M30-May-09 11:08
Baran M30-May-09 11:08 
Questionhow to select the calendar from another calendar when the date is being selected Pin
Mathew P V30-May-09 0:29
Mathew P V30-May-09 0:29 
AnswerRe: how to selct the control Pin
Blue_Boy30-May-09 0:42
Blue_Boy30-May-09 0:42 
GeneralRe: how to selct the control Pin
Mathew P V30-May-09 0:51
Mathew P V30-May-09 0:51 
GeneralRe: how to selct the control Pin
Blue_Boy30-May-09 0:55
Blue_Boy30-May-09 0:55 
Questionhow to expand particular node after button click..... Pin
bhuraasif30-May-09 0:04
bhuraasif30-May-09 0:04 
QuestionShow webpage content as thumbnails Pin
sepel29-May-09 23:14
sepel29-May-09 23:14 
AnswerRe: Show webpage content as thumbnails Pin
Manas Bhardwaj29-May-09 23:22
professionalManas Bhardwaj29-May-09 23:22 
GeneralRe: Show webpage content as thumbnails Pin
sepel29-May-09 23:53
sepel29-May-09 23:53 
Questionon uploading i can't get multiple filepath at server side Pin
pujafaldu29-May-09 23:12
pujafaldu29-May-09 23:12 
i have created multiple uploading at runtime through javascript.
but after browsing the file i can't access the filepath on server side.
Here i have attached the code for this one.Kindly help to find out this issue.

---------------------------------------------------------------------------------------

Here i used tag and on it's onclick event i am calling AddFileInput() function in javascript.


---------------------------------------------------------------------------------------


count = 0;
function AddFileInput()
{
var tdFileInputs = document.getElementById('tdFileInputs');
var id = (new Date()).getTime();
var file = document.createElement('input');
file.setAttribute('id',id);

file.setAttribute('type','file');

tdFileInputs.appendChild(file);
var a = document.createElement('a');
a.setAttribute('id','remove_' + id);
a.innerHTML = "Remove<br>";
a.onclick = RemoveFileInput;

tdFileInputs.appendChild(a);
var lnkAttch = document.getElementById('lnkAttch');
count = count + 1;

if(count>0)
{
lnkAttch.innerHTML = "Attach another file";
document.getElementById("btnSend").style.display="";
}
else
{
document.getElementById("btnSend").style.display="none";
lnkAttch.innerHTML = "Attach a file";
}
}


---------------------------------------------------------------------------------------

Questionconnect sql 2005 database that is another sysem using asp.net Pin
azad yadav29-May-09 22:50
azad yadav29-May-09 22:50 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
specialdreamsin29-May-09 22:58
specialdreamsin29-May-09 22:58 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
Manas Bhardwaj29-May-09 23:23
professionalManas Bhardwaj29-May-09 23:23 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
Mathew P V30-May-09 0:35
Mathew P V30-May-09 0:35 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
K03063-Jun-09 20:46
K03063-Jun-09 20:46 
QuestionAspnet_regsql.exe and generating scripts Pin
NetQuestions29-May-09 22:35
NetQuestions29-May-09 22:35 
QuestionWhy I call flash or video always failed [modified] Pin
jason_mf29-May-09 21:43
jason_mf29-May-09 21:43 
AnswerRe: Why I call flash or video always failed Pin
Manas Bhardwaj29-May-09 23:24
professionalManas Bhardwaj29-May-09 23:24 
GeneralRe: Why I call flash or video always failed Pin
jason_mf30-May-09 0:00
jason_mf30-May-09 0:00 

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.