1
Answer

how to replace _thumb to banner in eval in asp.net code

SHERLOCK_TOMS_thumb.jpg   to   
SHERLOCK_TOMS_banner.jpg 
 my code in repeater ion itemtemplate(
 
ImageUrl='Eval("poster_path".Replace("_thumb","_banner"))) %>'  but its not cahnged tell me please
Answers (1)
1
Shivam Payasi

Shivam Payasi

9 21.1k 26.8k 1y

Here's an example of a Pascal program that prints "##" 10 times:

program PrintHashes;
var
  i: integer;
begin
  for i := 1 to 10 do
    writeln('##');
end.

This program uses a for loop to iterate from 1 to 10 and print "##" on each iteration using the `writeln` procedure.