Click here to Skip to main content
15,867,453 members
Home / Discussions / ASP.NET
   

ASP.NET

 
SuggestionRe: I want to update users table according to ıd value Pin
Richard Deeming11-Jun-19 1:16
mveRichard Deeming11-Jun-19 1:16 
QuestionHow to use treeView to save the directory tree into the SQL Server database ? Pin
Member 24584679-Jun-19 16:27
Member 24584679-Jun-19 16:27 
AnswerRe: How to use treeView to save the directory tree into the SQL Server database ? Pin
Richard MacCutchan9-Jun-19 21:49
mveRichard MacCutchan9-Jun-19 21:49 
QuestionMysterious ADFS problem Pin
Super Lloyd5-Jun-19 21:19
Super Lloyd5-Jun-19 21:19 
Questionweb form needs to be used for several languages Pin
dcof2-Jun-19 19:46
dcof2-Jun-19 19:46 
AnswerRe: web form needs to be used for several languages Pin
F-ES Sitecore3-Jun-19 1:00
professionalF-ES Sitecore3-Jun-19 1:00 
Question(SOLVED) Is it possible to raise an error on filename that resides on the server? Pin
samflex29-May-19 4:36
samflex29-May-19 4:36 
AnswerRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming29-May-19 7:16
mveRichard Deeming29-May-19 7:16 
You'll need to use a TemplateField[^] instead, along with a code-behind function to test whether the file exists.
ASP.NET
<asp:TemplateField HeaderText="Recording">
    <ItemTemplate>
        <asp:HyperLink runat="server"
            NavigateUrl='<%# string.Format("http://Archive/{1}/play_recording_wav.aspx?filename=noop_{0}.wav", Eval("filename"), Eval("servername")) %>'
            Enabled='<%# RecordingExists(Eval("filename", "{0}"), Eval("servername", "{0}")) %>'
            Text="Listen"
        />
    </ItemTemplate>
</asp:TemplateField>
C#
protected bool RecordingExists(string filename, string servername)
{
    ...
}




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex29-May-19 9:18
samflex29-May-19 9:18 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming30-May-19 0:16
mveRichard Deeming30-May-19 0:16 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex30-May-19 4:00
samflex30-May-19 4:00 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming30-May-19 7:31
mveRichard Deeming30-May-19 7:31 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex31-May-19 3:17
samflex31-May-19 3:17 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming31-May-19 3:26
mveRichard Deeming31-May-19 3:26 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex31-May-19 3:42
samflex31-May-19 3:42 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming31-May-19 3:50
mveRichard Deeming31-May-19 3:50 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex31-May-19 4:19
samflex31-May-19 4:19 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming31-May-19 4:33
mveRichard Deeming31-May-19 4:33 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex31-May-19 4:36
samflex31-May-19 4:36 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming31-May-19 5:19
mveRichard Deeming31-May-19 5:19 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex31-May-19 6:07
samflex31-May-19 6:07 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
Richard Deeming31-May-19 6:20
mveRichard Deeming31-May-19 6:20 
GeneralRe: Is it possible to raise an error on filename that resides on the server? Pin
samflex31-May-19 6:29
samflex31-May-19 6:29 
QuestionHTTP Error 502.5 - Process Failure while publishing ASP.Net Core 2.1 Pin
meeram3927-May-19 20:45
professionalmeeram3927-May-19 20:45 
AnswerRe: HTTP Error 502.5 - Process Failure while publishing ASP.Net Core 2.1[RESOLVED] Pin
meeram3927-May-19 22:33
professionalmeeram3927-May-19 22:33 

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.