Click here to Skip to main content
15,891,473 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPick Id Under Working GridView Pin
Rinki Mukheraji21-Nov-07 3:09
Rinki Mukheraji21-Nov-07 3:09 
AnswerRe: Pick Id Under Working GridView Pin
SABhatti21-Nov-07 5:38
SABhatti21-Nov-07 5:38 
AnswerRe: How To Display Hierarchical Data by Using Nested Repeater Controls Pin
SABhatti21-Nov-07 5:33
SABhatti21-Nov-07 5:33 
GeneralUI Design: Opinions Pin
Brady Kelly21-Nov-07 2:15
Brady Kelly21-Nov-07 2:15 
QuestionHow to output a web control so that it can be postbacked from the page? Pin
Billypon21-Nov-07 2:09
Billypon21-Nov-07 2:09 
AnswerRe: How to output a web control so that it can be postbacked from the page? Pin
raj@code21-Nov-07 2:34
raj@code21-Nov-07 2:34 
GeneralRe: How to output a web control so that it can be postbacked from the page? Pin
Billypon21-Nov-07 3:50
Billypon21-Nov-07 3:50 
QuestionEmbed object is not working Pin
Kurian_Kurian21-Nov-07 2:08
Kurian_Kurian21-Nov-07 2:08 
Hi,i wan to show the video in asp.net page,so am using embed object.it is working in my local machine but after hosting that page not working in my machine.am adding this code in datalist control.embed code as follows

<embed id="vd" autostart="true" src="<%# DataBinder.Eval(Container.DataItem,"VIDEO")%>"
="" controller="true" loop="false" visible="true" width="318" height="320" scale="tofit" type="video/x-ms-wmv" />

Databindcode as follows

DataTable VideoTable = new DataTable();

DataColumn VideoColumn;

VideoColumn = new DataColumn();
VideoColumn.DataType = Type.GetType("System.String");
VideoColumn.ColumnName = "VIDEO";
VideoTable.Columns.Add(VideoColumn);
foreach (string Files in Directory.GetFiles(System.Web.HttpContext.Current.Server.MapPath("Video"), "*.wmv"))
{
VideoTable.Rows.Add(Files);

}

One more doubt.will the embed object work all the browsers or it is a browser specific.in my local machine it is IE6 only.if it is a browser specific which is the best solution for showing the video
QuestionOutlook Template file using ASP.NET Pin
manowj21-Nov-07 1:11
manowj21-Nov-07 1:11 
Questionimp Pin
niki_nilu21-Nov-07 1:05
niki_nilu21-Nov-07 1:05 
QuestionRe: imp Pin
John-ph21-Nov-07 1:10
John-ph21-Nov-07 1:10 
AnswerRe: imp Pin
kapil bhatnagar21-Nov-07 1:10
kapil bhatnagar21-Nov-07 1:10 
AnswerRe: imp Pin
Prateek G21-Nov-07 1:11
Prateek G21-Nov-07 1:11 
GeneralRe: imp Pin
niki_nilu21-Nov-07 1:15
niki_nilu21-Nov-07 1:15 
GeneralRe: imp Pin
Prateek G21-Nov-07 1:26
Prateek G21-Nov-07 1:26 
AnswerRe: imp Pin
Imran Khan Pathan21-Nov-07 1:12
Imran Khan Pathan21-Nov-07 1:12 
GeneralRe: imp Pin
niki_nilu21-Nov-07 1:17
niki_nilu21-Nov-07 1:17 
GeneralRe: imp Pin
Imran Khan Pathan21-Nov-07 1:21
Imran Khan Pathan21-Nov-07 1:21 
AnswerRe: imp Pin
InsDev21-Nov-07 1:22
InsDev21-Nov-07 1:22 
QuestionAvoid refreshing using Timer for client side code Pin
SreejithAchutan21-Nov-07 0:54
SreejithAchutan21-Nov-07 0:54 
AnswerRe: Avoid refreshing using Timer for client side code Pin
John-ph21-Nov-07 1:04
John-ph21-Nov-07 1:04 
QuestionImages retriving but having some problem Pin
Krishna Varadharajan21-Nov-07 0:46
Krishna Varadharajan21-Nov-07 0:46 
AnswerRe: Images retriving but having some problem Pin
pmarfleet21-Nov-07 0:57
pmarfleet21-Nov-07 0:57 
GeneralRe: Images retriving but having some problem Pin
Krishna Varadharajan21-Nov-07 1:11
Krishna Varadharajan21-Nov-07 1:11 
GeneralRe: Images retriving but having some problem Pin
pmarfleet21-Nov-07 1:25
pmarfleet21-Nov-07 1:25 

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.