Error 500.19
http://blog.donnfelker.com/post/IIS-7-This-configuration-section-cannot-be-used-at-this-path.aspx
Error 404.3
http://forums.iis.net/t/1096068.aspx
http://aspnet.4guysfromrolla.com/articles/051403-1.aspx
The first option is easiest if you have Visual Studio installed. Simply go to the Visual Studio menu in your Start menu. There you should see a Visual Studio Tools menu, where you will find the Command Prompt shortcut.
http://audacity.sourceforge.net/
http://barnamenevis.org/forum/showthread.php?t=139529
http://www.codeauthor.org/download.html
http://www.codesmithtools.com/
http://support.microsoft.com/kb/319465
address = "PrintTicket.aspx?ticketname=" + ticketname + "& ticketsans=" + ticketsans + "& ticket_time=" + ticket_time;
ResponseHelper.Redirect(address, "_blank", "");
ticket_name.Text = Request.QueryString[0];
ticket_sans.Text = Request.QueryString[1];
ticket_time.Text = Request.QueryString[2];
protected void SqlDataSource8_Selected(object sender, SqlDataSourceStatusEventArgs e)
{
string personeliNum = (e.Command.Parameters["@personeliNum"]).Value.ToString();
PersoneliDropDown.SelectedValue = personeliNum;
}
http://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentry.aspx
Download:
Error: Could not load file or assembly 'Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies
<
add assembly="Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>try putting the Ajax dlls in the bin folder or your app on the server, copy them from your dev machine, probably located at
C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025
http://www.codeproject.com/KB/selection/FarsiLibrary.aspx
http://www.yahaq.org/software/farsi/13850704/14.html.
http://hoomb.dnsalias.com/index.php?page=download
http://www.basicdatepicker.com
http://support.microsoft.com/default.aspx?scid=kb;en-us;313075
http://www.webfilebrowser.com/WebFileBrowser/permissions.asp
http://www.asp.net/Learn/Data-Access/tutorial-48-cs.aspx
http://www.developerfusion.com/article/4278/using-adonet-with-sql-server/3/
returnValue:
protected void SqlDataSource1_Inserted(object sender, SqlDataSourceStatusEventArgs e)
{
string rval = e.Command.Parameters[5].Value.ToString();
}
http://www.tek-tips.com/viewthread.cfm?qid=1446549&page=11
http://bytes.com/groups/net-asp/326005-java-script-master-page
http://social.msdn.microsoft.com/forums/en-US/netfxjscript/thread/dc7c1aa6-7571-460c-b039-13cdba8c396c/
http://www.opinionatedgeek.com/DotNet/Products/PowerPack/Examples/PrintButton.aspx
http://www.daniweb.com/forums/thread27529.html
http://visualstudiomagazine.com/columns/article.aspx?editorialsid=1907
input type="button" value="پرینت " onload=""
onclick="window.print();" class="button" style="width: 150px"
response.write("");
http://p2p.wrox.com/topic.asp?TOPIC_ID=11046
public static class ResponseHelper
{
public static void Redirect(string url, string target, string windowFeatures)
{
HttpContext context = HttpContext.Current;
if ((String.IsNullOrEmpty(target) ||
target.Equals("_self", StringComparison.OrdinalIgnoreCase)) &&
String.IsNullOrEmpty(windowFeatures))
{
context.Response.Redirect(url);
}
else
{
Page page = (Page)context.Handler;
if (page == null)
{
throw new InvalidOperationException(
"Cannot redirect to new window outside Page context.");
}
url = page.ResolveClientUrl(url);
string script;
if (!String.IsNullOrEmpty(windowFeatures))
{
script = @"window.open(""{0}"", ""{1}"", ""{2}"");";
}
else
{
script = @"window.open(""{0}"", ""{1}"");";
}
script = String.Format(script, url, target, windowFeatures);
ScriptManager.RegisterStartupScript(page,
typeof(Page),
"Redirect",
script,
true);
}
}
}
http://weblogs.asp.net/infinitiesloop/archive/2007/09/25/response-redirect-into-a-new-window-with-extension-methods.aspx
http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
http://www.yourhtmlsource.com/javascript/popupwindows.html
http://www.webreference.com/js/tutorial1/open.html
http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
http://www.w3schools.com/HTMLDOM/met_win_open.asp
http://www.htmlgoodies.com/beyond/javascript/article.php/3471221
http://www.wwwcoder.com/main/parentid/170/site/3669/68/default.aspx
http://support.microsoft.com/kb/910442
http://barnamenevis.org/forum/archive/index.php/t-67661.html
دسترسی به یک فیلد داخل gridview:
string selected_mid = GridView1.DataKeys[GridView1.SelectedIndex].Value.ToString();
exception in rowdeleted:
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowdeleted.aspx
if (e.Exception == null)
{
warn.Text = "Row deleted successfully.";
}
else
{
Message.Text = "ERROR";
e.ExceptionHandled = true;
}
find row key in gridview:
string mid = GridView1.DataKeys[0].Value.ToString();
download has been blocked:
http://forums.mozillazine.org/viewtopic.php?f=38&t=673575&st=0&sk=t&sd=a&start=0
http://kb.mozillazine.org/Unable_to_save_or_download_files#Reset_system_Internet_security_settings_-_Windows
this.meliIdTextBox.TextChanged += new EventHandler(this.meli_Click);
this.personeliTextBox.TextChanged += new EventHandler(this.personeli_Click);
http://www.codeproject.com/KB/aspnet/Crystal_Reports_in_net.aspx
http://www.vbexplorer.com/VBExplorer/vb_feature/august2000/using_crystal_reports.asp
http://www.beansoftware.com/ASP.NET-Tutorials/Using-Crystal-Reports.aspx
http://www.crystaldevelopersjournal.com/artman/publish/cat_index_10.shtml
http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764557300.html
http://barnamenevis.org/forum/showthread.php?p=132045#post132045
http://www.barnamenevis.org/forum/showthread.php?t=24302
http://barnamenevis.org/forum/attach...5&d=1190030009
'
http://www.sharewareconnection.com/titles/crystal-reports.htm
http://msdn.microsoft.com/en-us/magazine/cc301570.aspx
http://www.crystaldevelopersjournal.com/artman/publish/article_139.shtml
http://www.crystaldevelopersjournal.com/artman/publish/cat_index_10.shtml
http://forums.gtpland.com/showthread.php?t=1323
http://www.parsiforums.com/-t8366.html
http://www.developercenter.ir/forum/archive/index.php?f-32.html
http://msdn.microsoft.com/en-us/library/aa287929(VS.71).aspx
http://aspalliance.com/crystal/
http://www.vbdotnetheaven.com/UploadFile/sushmita_kumari/Report201242006041121AM
/Report2.aspx?ArticleID=d6184a33-ee75-495d-9ef3-1fe3e9a24632
http://msdn.microsoft.com/en-us/library/aa287918(VS.71).aspx
ClientScript.RegisterStartupScript(typeof(Page), "SetFocus", "");
http://www.developercenter.ir/Forum/showthread.php?t=1135
http://forum.majidonline.com/showthread.php?t=33407
gvw = (GridView)DataList1.Items[i].FindControl("GridView1");
gvw.Visible = true;
http://forum.farsweb.ir/showthread.php?tid=860&pid=2223
http://www.wwwcoder.com/Directory/tabid/68/type/art/site/4381/parentid/445/Default.aspx
http://msdn.microsoft.com/en-us/library/2tw134k3.aspx
http://blogs.msdn.com/webdevtools/pages/asp-net-ajax-1-0-web-config.aspx
http://forums.asp.net/t/1130831.aspx
http://www.technade.com/2008/09/required-entries-in-webconfig-file-for.html
