Visual Web Developer - ejecutar script en c# con asp.net

 
Vista:

ejecutar script en c# con asp.net

Publicado por Mike (5 intervenciones) el 24/02/2019 20:06:04
hola buen dia

tengo este codigo que funciona

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Add blinking effect to text in jQuery</title>
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script type="text/javascript">
$(function() {
blinkeffect('#txtblnk');
})
function blinkeffect(selector) {
$(selector).fadeOut('slow', function() {
$(this).fadeIn('slow', function() {
blinkeffect(this);
});
});
}
    </script>
</head>
<body>
    <form id="form1" runat="server">
        <div id="txtblnk"> <p><strong><font color="red">Welcome to Aspodtnet-Suresh.com</font></strong></p> </div>
        <div id="txtblnk1"> <p><strong><font color="red">Welcome New to Aspodtnet-Suresh.com</font></strong></p> </div>
    </form>
</body>
</html>



necesito crearlo en c# con asp.net
trato de hacerlo asi pero no me funciona:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
namespace CrudOperation
{
    public partial class BlinkWebForm : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
 
            string script = @"<script type='text/javascript' src = 'http://code.jquery.com/jquery-1.8.2.js'></script>
            < script type = 'text/javascript'>
                $(function() {
                                blinkeffect('#txtblnk');
                            })
                function blinkeffect(selector) {
                    $(selector).fadeOut('slow', function() {
                        $(this).fadeIn('slow', function() {
                            blinkeffect(this);
                        });
                    });
                }
            </script>";
 
            ScriptManager.RegisterStartupScript(this, typeof(Page), "blinkeffect('#txtblnk')", script, false);
 
        }
    }
}

que me hara falta?

saludos...
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder