• پایان فعالیت بخشهای انجمن: امکان ایجاد موضوع یا نوشته جدید برای عموم کاربران غیرفعال شده است

اسکریپت به زبان C#

behrooz.shie

کاربر تازه وارد
تاریخ عضویت
11 اکتبر 2011
نوشته‌ها
8
لایک‌ها
0
سلام دوستان اسکریپتی میشناسید که به زبان Asp و سی شارپ باشه ؟
اسکریپتو برای خبرنامه میخام :(
ممنون میشم سریع جواب بدید
 

behrooz.shie

کاربر تازه وارد
تاریخ عضویت
11 اکتبر 2011
نوشته‌ها
8
لایک‌ها
0
سلام دو روز دیگه باید پروژه تحویل بدم
اما ران تایم ارور میده
کد:
Server Error in '/WebSite1' Application

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>
چی کارش کنم اینو ؟
هرچی تو Web.config میزنم
customErrors mode="Off جواب نمیده
در ضمن این Web.config منه یکی از دوستان زحمتشو کشیده نوشته من سر در نمیارم ازش

کد:
<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <connectionStrings>
    <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true"
      providerName="System.Data.SqlClient" />
    <add name="DatabaseConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True"
      providerName="System.Data.SqlClient" />
  </connectionStrings>
  <system.web>
    <compilation debug="true" targetFramework="4.0"/>
    <authentication mode="Forms">
      <forms loginUrl="~/Account/Login.aspx" timeout="2880"/>
    </authentication>
    <membership>
      <providers>
        <clear/>
        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/>
      </providers>
    </membership>
    <profile>
      <providers>
        <clear/>
        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
      </providers>
    </profile>
    <roleManager enabled="false">
      <providers>
        <clear/>
        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/"/>
        <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/"/>
      </providers>
    </roleManager>
  </system.web>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>
 
بالا