Click here to Skip to main content
15,916,601 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to know how to remove image fluctuate from Asp page .
I am using Ajax control for fluctuation like script manager and update panel and using timer control.
I am doing online exam project.

please give any idea or coding for this situation.
Posted
Updated 10-Apr-11 21:42pm
v2
Comments
Sunasara Imdadhusen 11-Apr-11 6:19am    
Not clear!!
Sandeep Mewara 11-Apr-11 10:26am    
Not clear: 'I want to know how to remove image fluctuate from Asp page'?
You are using AJAX and you are having some fluctuation. No idea,

Use 'Improve Question' and edit/update your question with more details and try to rephrase your work

I have noticed such fluctuation with AJAX controls when i try to pull the records from database with AJAX control/timer.

So if you are doing the same thing, make sure you have the correct database connection.

Thanks.
 
Share this answer
 
XML
<%@LANGUAGE="VBSCRIPT"%>
<%
if not (session("access_level") = "admin")  then
   response.Redirect("index.asp")
end if
%>
<!--#include file="include/test_connect.asp" -->
<html>
<head>
<title>Add Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="aliceblue">

<table width="100%">
  <!--DWLayoutTable-->
  <tr>
    <td height="520" valign="top"><!--#include file="test_menu.asp" --><br>
        <!--#include file="test_admin.asp" --><br>
    </td>
    <td width="100%" valign="top"><table width="100%" height="500" >
  <tr>
          <td width="100%" height="50" valign="top"><div align="center"><br>
              <h3>User Admin</h3>
            <%
            Query = "select * FROM password"
            Set RS = Server.CreateObject("ADODB.Recordset")
            RS.Open Query, test_connector, 3, 3
            if (not RS.eof) and (not RS.bof) then
            alldata=RS.getrows
            numrows=ubound(alldata,2)
            RS.close
            %>
  <table width="90%">
  <tr>
  <td><div align="center">User name</div></td>
  <td><div align="center">Access Level</div></td>
  <td><div align="center">Test Name ***</div></td>
  <td><div align="center">Tests Left **</div></td>
  <td><div align="center">Reset Password*</div></td>
  <td><div align="center">Edit User</div></td>
  <td><div align="center">Delete User</div></td>
  </tr>
  <% for x = 0 to numrows %>
  <tr>
  <td><div align="center"><%= alldata(1,x) %></div></td>
  <td><div align="center"><%= alldata(3,x) %></div></td>
  <td><div align="center"><%= alldata(13,x) %></div></td>
  <td><div align="center"><%= alldata(14,x) %></div></td>
  <td><div align="center"><a href="user_admin.asp">Reset</a></div></td>
  <td><div align="center"><a href="user_admin.asp">Edit</a></div></td>
  <td><div align="center"><a href="user_admin.asp">Delete</a></div></td>
  </tr>
  <% next %>
  <% else %>
  <tr><td colspan="7"><div align="center">No users in database</div></td></tr>
  <% end if %>
  </table>


              <p>
                * Resetting password will be allowed only Admin User </p>
              <p>** If tests left is negative that would indicate that test limits.</p>

              <p>*** If test name is blank that means users is allowed to take
                any tests. This field is ignored for Admin Users</p>
            </div></td>
  </tr>
</table></td></tr></table></td></tr></table>
</body>
</html>
<!--#include file="test_close.asp" -->



What is problem in the particular page? Why will not update the user’s? Pl helps me
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900