如何从html按钮单击调用cs函数

如何从html按钮单击调用cs函数

本文介绍了如何从html按钮单击调用cs函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

aspx文件:

.cs文件:

公共无效的display(){Response.Redirect("default.aspx"); }

如何从html按钮click.div调用.cs文件中的显示函数.解决方案


aspx file:

.cs file:

public void display() { Response.Redirect("default.aspx"); }

How to call the display function which is in .cs file from html button click

解决方案


这篇关于如何从html按钮单击调用cs函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 06:26