یه سایت asp.net web form 4.8 تو لوکال بر روی iis اجرا کردم خطای زیر رو نمایش میده This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overr HTTP Error 500.19 – Internal Server Error The requested page cannot be accessed because the related …
Read More »ASP.NET
مشکل عدم نمایش فایل ریسورس WebResource.axd در زمان استفاده از روتینگ Routing asp.net web form
زمانی که از روتینگ Routing در asp.net web form استفاده میکنیم یک سری مشکل ممکن است پیش بیاد و فایل WebResource.axd در دسترس نباشد برای رفع این مشکل باید عبارت زیر را در Global.asax اضافه کرد routes.Ignore(“{resource}.axd/{*pathInfo}”);
Read More »Gutenberg : فریم ورک مدرن برای پرینت کردن استاندارد سایت
در این مطلب میخوام سایتی رو بهتون معرفی کنم که در اون یک فریم ورک مدرن و ساده رو در اختیار شما قرار میده و با استفاده از اون وبسایت شما به درستی و استاندارد پرینت میشه. برای شروع وارد سایت Gutenberg بشین. توضیحات مربوط به کتابخانه Gutenberg همونطور که میدونین شما میتونین با استفاده از ویژگی media و مقدار print استایلهای مشخصی رو برای …
Read More »Asp.net webforms 4.5 TreeView Populate from Database SQL
نمایش ساختار درختی سلسله مراتبی در asp.net webforms ورژن ۴٫۵ string str_ConnectionStrings; protected void Page_Load(object sender, EventArgs e) { str_ConnectionStrings = ConfigurationManager.ConnectionStrings[“Atlas_PublicConnectionString”].ConnectionString; BindTreeViewControl(); } DataSet P_Dataset(string str_SQL) { SqlDataAdapter adp = new SqlDataAdapter(str_SQL, str_ConnectionStrings); DataSet obj_DataSet = new DataSet(); adp.Fill(obj_DataSet, “TableName”); return obj_DataSet; } private void BindTreeViewControl() { try { DataSet obj_DataSet = P_Dataset(“Select id,name,pid from z_tbl_Tree”); DataRow[] Rows = …
Read More »Asp.net 4.5 Populating a TreeView Control from the Database
ایجاد ساختار درختی بر اساس دیتابیس Asp.net 4.5 Populating a TreeView Control from the Database ایجاد ساختار درختی بر اساس دیتابیس Asp.net 4.5 Populating a TreeView Control from the Database
Read More »خواندن یک فیلد فایل xml در in C#C# :: Read All rows of one field from XML
یک کد کاربردی برای خواندن همه رکوردهای یک فیلد فایل XML در C# XML File: ۱ گروه فنی مهندسی پرهاست http://www.ParHost.net گروه فنی مهندسی پرهاست ارائه دهنده خدمات و سرویسهای اینترنتی ۲۸۵۸ ۱ <Null> <Null> ۲ یادداشتها و چرکنویس های من Home یادداشتها و چرکنویس های من ، نکته ها و آموزه هایی در مورد فناوری اطلاعات ۲۹۸۹ ۱ …
Read More »معرفی ادیتورهای کاربردی برای صفحات وب
ورودی textarea در یک فرم تحت وب، فقط قابلیت درج متن ساده را دارد (مثل Notepad)اما برای درج مطالب در سایت، ما نیاز به ادیتوری داریم که امکانات یک متن غنیشده (مثل نرمافزار word) را دارا باشد یعنی بتوانیم رنگ و سایز و نوع فلم را تغییر دهیم، تصویر و جدول و خط درج کنیم، بخشی از متن را لینک …
Read More »8 روش برای جلوگیری از هک کردن در Asp.Net
ASP.NET Security: 8 Ways to Avoid Attack Wei Meng Lee مواردی را برای جلوگیری از هک شدن سایتهای اینترنتی پیشنهاد کرده اند که در زیر آورده شده است. 1-Cross-site Scripting 2-SQL Injection 3-Validate your User Inputs 4-Use Hashing to Store your Passwords 5-Encrypt Sensitive Data 6-Store Secure Information in the Registry 7-Do Some Housekeeping before You Deploy Your Web Application …
Read More »JQuery show hide multiple DIV specific time interval :: نمایش چندین موضوع با جی کوئری
In this article I’m going to explain how to show/hide multiple DIV specific time interval by using JQuery. It’s quite easy to how/hide multiple DIV specific time interval by using JQuery. JQuery Show() and hide() function enables you to do this task with custom Fade In and Fade Out effect. Please follow the steps given below
Read More »Single line if statement with 2 actions
شرط یک خطی در c# Sounds like you really want a Dictionary<int, string> or possibly a switch statement… You can do it with the conditional operator though: userType = user.Type == 0 ? "Admin" : user.Type == 1 ? "User" : user.Type == 2 ? "Employee" : "The default you didn't specify"; While you could put that in one line, I’d strongly urge you not to. I would …
Read More »