iframe src assignment problem (server side)

iframe src assignment problem (server side)
I encountered this problem today. I reassigned the src value of the iframe on the server side, added an ID to the iframe, and added runat=server

1. Assign a value to the src of the iframe via JS

2. If you need to change the src of the iframe when the page is loaded in the C# background, you can do

For example, <iframe id="ifram" runat=server > is applied as a server-side control and written in the program

Copy code
The code is as follows:

ifram.Attributes.Add("src",strUrl);

strUrl is a string and can be assigned any value.

<<:  MySQL Router implements MySQL read-write separation

>>:  Detailed explanation of the spacing problem between img tags

Recommend

vue3+ts+EsLint+Prettier standard code implementation

Table of contents use Use of EsLint Add a profile...

A simple example of using Vue3 routing VueRouter4

routing vue-router4 keeps most of the API unchang...

MySQL parameter related concepts and query change methods

Preface: In some previous articles, we often see ...

Analysis of the principle of Nginx using Lua module to implement WAF

Table of contents 1. Background of WAF 2. What is...

In-depth understanding of Worker threads in Node.js

Table of contents Overview The history of CPU-bou...

The magic of tr command in counting the frequency of English words

We are all familiar with the tr command, which ca...

Implementation of Nginx domain name forwarding https access

A word in advance: Suddenly I received a task to ...

Summary of Mysql update multi-table joint update method

Next, I will create two tables and execute a seri...

Two simple ways to remove text watermarks from web pages

<br /> When we browse certain websites and s...

How to draw a cool radar chart in CocosCreator

Table of contents Preface Preview text Graphics C...

Example code for implementing a text marquee with CSS3

Background Here's what happened, Luzhu accide...

Display special symbols in HTML (with special character correspondence table)

Problem Reproduction When using HTML for editing,...

This article will help you understand the life cycle in Vue

Table of contents 1. beforeCreate & created 2...

Issues installing Python3 and Pip in ubuntu in Docker

text 1) Download the Ubuntu image docker pull ubu...