Can web "page refresh" make the sql statemens execute?

  • Thread starter Thread starter JB
  • Start date Start date
J

JB

Hello Community

In my ASP.Net /C#/SQL Server application I fill my controls by executing
a query (embedded sql in the application) that selects the data from an sql
table.

What command(s) will allow me to set it up so that the the user can both
click a button and the web page refreshes the data?

And

set it up so tha the page automatically refreshes itself every 20 minutes?

Thanks
Jeff
JB
 
JB said:
Hello Community

In my ASP.Net /C#/SQL Server application I fill my controls by executing
a query (embedded sql in the application) that selects the data from an sql
table.

What command(s) will allow me to set it up so that the the user can both
click a button and the web page refreshes the data?

Use a button that refreshes the data in the control the page will
refresh itself on postback.......
And

set it up so tha the page automatically refreshes itself every 20 minutes?

Put a timer on the page and make the page redirect to itself...
 
Hello Community

    In my ASP.Net /C#/SQL Server application I fill my controls by executing
a query (embedded sql in the application) that selects the data from an sql
table.

    What command(s) will allow me to set it up so that the the user can both
click a button and the web page refreshes the data?

And

    set it up so tha the page automatically refreshes itself every 20minutes?

    Thanks
    Jeff
JB

Maybe you can tell more about what kind of data you want to load on
the page. Sounds like you need a GridView control or similar data
control.

Thanks,
 
Back
Top