vote up 1 vote down star
1
public string GetRandomImage(string StrDirectory, string StrFileName)
{
    Response.Write("Test: GetRandomImage True");
    string GetRandomImage;
    int IntFileCount = Directory.GetFiles(Server.MapPath(StrDirectory), "*.*", SearchOption.TopDirectoryOnly).Length;
    Random Random1 = new Random();
    IntFileCount = IntFileCount + 1;
    GetRandomImage = StrDirectory + StrFileName + Random1.Next(1, IntFileCount) + ".png";
    Response.Write(GetRandomImage);
    return GetRandomImage;
}

this code is in my codebehind file (default.aspx.cs). i want to call it from my default.aspx file. I tried to call with

<%# GetRandomImage("images/random/","random_") %>

but i have get error. How can I do this? Thank you for all helper(s) and your help(s).

flag

What is the error you're getting? – Druid Sep 30 at 8:19
I have updated my answer. – Binoj Antony Sep 30 at 8:20

2 Answers

vote up 0 vote down

You can call it with the fully qualified namespace if its a static method or with a this if its a page method. Use an equal sign instead of hash

<%= this.GetRandomImage("images/random/","random_") %>
link|flag
I could not understand. What you told me. – Kerberos Sep 30 at 8:09
I have updated the post.. – Binoj Antony Sep 30 at 8:10
OK i'll try to explain more. i'll edit my post soon. – Kerberos Sep 30 at 8:12
First, i want to thank you for your help. I have used your suggestion. I have not get error but it has not return string value. So i have solved my issue in codebehind's Page_Load event with using asp.net's imageURL attribute of image control. Thank you again. – Kerberos Sep 30 at 8:42
vote up 0 vote down

# requires a call to DataBind() on the control.

protected string GetRandomImage(string StrDirectory, string StrFileName)
{
    Response.Write("Test: GetRandomImage True");
    string GetRandomImage;
    int IntFileCount = Directory.GetFiles(Server.MapPath(StrDirectory), "*.*", SearchOption.TopDirectoryOnly).Length;
    Random Random1 = new Random();
    IntFileCount = IntFileCount + 1;
    GetRandomImage = StrDirectory + StrFileName + Random1.Next(1, IntFileCount) + ".png";
    Response.Write(GetRandomImage);
    return GetRandomImage;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.