Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

mghiassi

@mghiassi
About
Posts
61
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How can I use server.mappath
    M mghiassi

    I can't access to this address if root string http://localhost/project/picture/aks-13 but I recive this string E:\mgh\AmirKabir\ASP.NET\Project\Picture\aks-13

    ASP.NET question sysadmin help

  • Textbox default Language
    M mghiassi

    Hello It set in Windows Language but you can set direction and text-align with css like this .txt { direction:rtl; text-align:right; } then in aspx file in heading section you must write this code <link href="StyleSheet.css" type="text/css" rel="Stylesheet" />

    ASP.NET question

  • How can I use server.mappath
    M mghiassi

    Hello, I wrote this code string root = Server.MapPath("~/"); or string root = Server.MapPath("/Project"); but it does not work what's the problem?

    ASP.NET question sysadmin help

  • How to use DropDownList with C#.NET
    M mghiassi

    Hi all, I want to use a DropDownList control and set this property In Page_Load event: ddl.DataTextField="Adminicle"; ddl.DataValueField="CodeAdminicle"; ddl.DataBind(); In SelectedIndexChanged event: row=ddl.SelectedItem.Value but no row was selected. what should i do?

    ASP.NET csharp tutorial question

  • DropDownList with C#.NET
    M mghiassi

    Hi all I wamt to use a DropDownList with ASP.NET.My code like this: in Page_Load event: ddlAdminicle.DataTextField = "Adminicle"; ddlAdminicle.DataValueField = "CodeAdminicle"; ddlAdminicle.DataBind(); and in accept event: row = Convert.ToInt16(ddlAdminicle.SelectedItem.Value); but items didn't selected what should i do?

    ASP.NET csharp asp-net question

  • Pleasehelp me for SSL and DropDownList
    M mghiassi

    Hi all, I have two Problem please help me. One: I want secure pages and i wrote this code for it <authentication mode="Forms"> <forms name="myCookie" timeout="30" loginUrl="English.aspx" defaultUrl="_Default.aspx"> <credentials passwordFormat="Clear"> <user name="myUserName" password="myPassword"/> </credentials> </forms> </authentication> <authorization> <allow users="myUserName"/> <deny users="?"/> </authorization> but I don't access to _Default.aspx page. Two: I want a DropDownList that AutoPostBack property is true and i wrote this code for select an item: protected void ddlField_SelectedIndexChanged(object sender, EventArgs e) { row = myFunction(2, ddlField.SelectedItem.Text);//row select index in database DT_SelectAdeptP = TA_SelectAdeptP.GetData(1, row); ddlAdept.DataSource = DT_SelectAdeptP; ddlAdept.DataTextField = "Adept"; ddlAdept.DataBind(); } but this code didn't execute and page is loading agian Please help me. Thanks in advance.

    ASP.NET security database help question

  • Secure page with C#.NET
    M mghiassi

    Hi all, I want secure pages with C#.NET and I write this code in web.config for this prepose <authentication mode="Forms"> <forms name="myCookie" loginUrl="login.aspx" timeout="30"> <credentials passwordFormat="Clear"> <user name="myUserName" password="myPassword"/> </credentials> </forms> </authentication> <authorization> <allow users="yekdose"/> <deny users="?"/> </authorization> but in the first page I didn't access to another pages. Please hlp me. Thanks in advance.

    C# csharp security question

  • [Message Deleted]
    M mghiassi

    [Message Deleted]

    C#

  • I want to use CSS with c# windows application
    M mghiassi

    you can not use css in windows application

    C# csharp css design tutorial

  • Problem With Grid View Header
    M mghiassi

    you can use this code <asp:GridView ID="GridView1" runat="server"> <Columns> <asp:ButtonField ButtonType="Button" Text="Button" /> </Columns> </asp:GridView>

    ASP.NET css help

  • How to Use DataSet in C#
    M mghiassi

    I make DataSet By Wizard but when I want to use this DataSet in my application,C# does not know DataSet and not show method and properties

    C# csharp database sql-server sysadmin tutorial

  • SQL SERVER .sql script file to DB2 DBMS
    M mghiassi

    you can use import statement,this means you can run .sql file and then and you must import .mdf file

    Database database tools sql-server sysadmin help

  • How to Use DataSet in C#
    M mghiassi

    Hi all, I use C# and SQL Server,I make DataSet by QueriesTableAdapter but I don't know how can use DataSet in C# program when i use Wizard DataSet

    C# csharp database sql-server sysadmin tutorial

  • radio buttos in datagrid source using vb.net2.0
    M mghiassi

    <asp:DataGrid ID="DataGrid1" runat="server"> <Columns> asp:TemplateColumn <ItemTemplate> <asp:RadioButton /> </ItemTemplate> </asp:TemplateColumn> </Columns> </asp:DataGrid>

    Visual Basic csharp question

  • Need to create tables with different culture
    M mghiassi

    you must use two table with foreign key in another table. One table include (SeedID,FirstName,LastName,Gender and CultureID foreign key) and another table include(CultureID PrimeryKey,Culture)

    Database database help tutorial question lounge

  • How to work with style element in WebBrowser control
    M mghiassi

    You can use CSS Class(Cascading Style Sheet) for control it.

    Visual Basic question csharp html asp-net

  • ArrayControl [modified]
    M mghiassi

    Please help me. I use Visual c# 2005. I want to use some control with same name and diffrent index like control array. Please tell me i can use what property of controls like DropDownList Thanks in advance. -- modified at 14:57 Monday 13th August, 2007

    C# csharp database data-structures help

  • String Concatenation
    M mghiassi

    Hi, You can use String.Concat

    ASP.NET csharp asp-net help tutorial question

  • How can i use Process.Start
    M mghiassi

    Hi all, How can i use Process.Start that when i right click or click in a LinkButton the Internet Explorer opens in new window Thanks in advance

    ASP.NET question

  • Trouble connecting to SQl server 2005
    M mghiassi

    Hi, You should connect to SQL Server by SQL Server Authentication(User sa) and not Windows Authentication.

    Database help database sql-server sysadmin security
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups