PDA

View Full Version : اعداد لاتین gridview paging



baidin
سه شنبه 23 دی 1393, 20:47 عصر
سلام
به چه صورتی میشه اعدادی که به صورت اتوماتیک در gridview برای paging ایجاد می شود به صورت فارسی باشد؟
متشکرم

fakhravari
چهارشنبه 24 دی 1393, 21:40 عصر
اون میشه css
فونت فارسی اعمال کنید درست می شود.

baidin
جمعه 26 دی 1393, 13:40 عصر
مرسی
مشکلی که الان دارم این هست که اگر کاربر شماره صفحات بیانگر هر پیج را کلیک کنه نمایش میده منتهی در صورتیکه یکی از پیج ها را انتخاب کنه و چند دقیقه صبر کنه و بعد پیج دیگری را کلیک کنه پیغام خطای زیر را میده در حالیکه اگر این وقفه چند دقیقه ای وجود نداشته باشه خطا نمیده و به درستی اون پیج نمایش داده می شود.


Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".



<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>



Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.



<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

keiv@n
جمعه 26 دی 1393, 17:01 عصر
سلام

به نظر من اول برو داخل وب کانفیگ custome errors رو off کن :


<system.web>
<customErrors mode="off"/>
</system.web>


بعد که دیدی خطا چیه می تونی توسط breakPoint پروژرو دیباگ کنی

اگر باز هم مشکل داشتی اینجا خطارو پست بزار بررسی کنیم