No records on the first page option |
12/17/2007 10:15:48 PM |
ASPRunner.NET General questions | |
W
warongrit author
Hi,<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=7081&image=1&table=forumtopics' class='bbc_emoticon' alt=':unsure:' /> |
|
|
Eugene 12/31/2007 |
Try to use next code in OnLoad events |
F
|
fmbma 1/9/2008 |
I converted this to VB as follows: Try to use next code in OnLoad events // List page: OnLoad public static void ListOnLoad(System.Web.UI.Page Page) { GridView gv = (GridView)Page.Master.FindControl("ContentPlaceHolder1").FindControl("dbGrid_TABLENAME"); gv.Visible = ((TextBox)Page.Master.FindControl("ContentPlaceHolder1").FindControl("txtSearchValue")).Text!=string.Empty; } // ListOnLoad |
F
|
fmbma 1/9/2008 |
I converted this to VB as follows: Try to use next code in OnLoad events // List page: OnLoad public static void ListOnLoad(System.Web.UI.Page Page) { GridView gv = (GridView)Page.Master.FindControl("ContentPlaceHolder1").FindControl("dbGrid_TABLENAME"); gv.Visible = ((TextBox)Page.Master.FindControl("ContentPlaceHolder1").FindControl("txtSearchValue")).Text!=string.Empty; } // ListOnLoad |
|
Eugene 1/10/2008 |
Please download and install the latest version of ASPRunner.NET. You can get it here: http://www.asprunner.com/files/asprunnernet-setup.exe |
F
|
fmbma 1/11/2008 |
Eugene, Please download and install the latest version of ASPRunner.NET. You can get it here: http://www.asprunner.com/files/asprunnernet-setup.exe I if doesn't help, please send me your project (including project file, output directory and database backup) on support@xlinesoft.com. I will investigate it on my box. |
|
Eugene 1/14/2008 |
I'm working from ver 3, build 91.
|
H
|
hresto 6/30/2008 |
The above C# code works for me on build 176, bur it breaks the "Advance" search form containing lookup wizards drop down menus. It return nothing on the List page. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=30670&image=1&table=forumreplies' class='bbc_emoticon' alt=':(' /> |