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