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
A

adatapost

@adatapost
About
Posts
37
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • changepassword
    A adatapost

    Had you configured your web application with WAT - Web application administrative tool?

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET help tutorial

  • About Datagrid [modified]
    A adatapost

    Here is a code might help you. I think you are using MSSQL server 2005. SqlConnection cnnew SqlConnection(...your_connection_string....); SqlCommand cmd=new SqlCommand(); cmd.Connection=cn; cmd.CommandText="your_proc"; cmd.CommandType=CommandType.StoredProcedure; ... ... SqlDataAdapter adp=new SqlDataAdapter(cmd); DataTable dt=new DataTable(); adp.Fill(dt); GridView v=new GridView(); v.DataSource=dt; v.DataBind(); form1.Controls.Add(v); .. ..

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET design tutorial

  • Pull nested xml values into Datagrid
    A adatapost

    After loading an XML file into DataSet; DataSet creates number of DataTable instances so you have to decide which datatable instance you want to use. For Example, DataSet ds=new DataSet(); ds.ReadXml(....); // List of DataTables for(int i=0;iA DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET html xml question announcement

  • How to allow different kinds of text in textbox based on dropdownlist selecteditem?
    A adatapost

    No, nothing.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET tutorial question

  • How to pass the checked row from one gridview to another
    A adatapost

    Basically, GridView and other controls represent the view not data. Data is placed in your simple or complex variables (say objects). It is better practice to work on objects where data is available.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET help tutorial question

  • How to force web service to run at client side?
    A adatapost

    Misperception WebService. Web service is a techonology that provides an interface for some functionality to make it accessible from other programs across the web. This functionality might be obtaining data from a database, performing mathematical calc., etc.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET tutorial question sysadmin windows-admin

  • How to allow different kinds of text in textbox based on dropdownlist selecteditem?
    A adatapost

    set attribute ValidateRequest="false" at page directive.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET tutorial question

  • Retrive file path back in to fileupload control......
    A adatapost

    If your are using ASP.NET then you may use ~ (root) operator to resolve path with server controls. Save ~/images/xyz.jpg in database. However, you said "Is it possible to get back full path?". Yes you can: Use, Server.MapPath or Request.MapPath or MapPath method. eg. String fullpath=Request.MapPath("~/images/xyz.jpg"); or String fullpath=Request.MapPath("../images/xyz.jpg");

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET csharp database tutorial question

  • Error when trying to login once moved to IIS Server
    A adatapost

    |DataDirectory|\aspnetdb.mdf;

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET debugging csharp asp-net sysadmin windows-admin

  • how to resize whole aspx page
    A adatapost

    Use % (percent) unit of measurement.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET question help tutorial

  • Extract Data from Resume Word file
    A adatapost

    To read data from word file requires Ms-Office Interop service - DLL. So, add the reference of Ms-Word com component. LINQ is the another way to read a word document.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET csharp database asp-net sql-server sysadmin

  • ASP --> Access --> Excel & MsSQL(ODBC)
    A adatapost

    I am unable to judge where you got problem. Any code? You are using AccessDataSource - OleDB classes and where is code that uses ODBC?

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET csharp asp-net sql-server help question

  • file download problem
    A adatapost

    You should write following code: string FilePath = Globals.ApplicationVRoot + "/Downloads/DemoUser.CSV"; byte []b=System.IO.File.ReadAllBytes(FilePath); string FileName = "DemoUser.CSV"; HttpResponse response = HttpContext.Current.Response; response.ClearHeaders(); response.ClearContent(); response.ContentType = "application/octet-stream"; response.AddHeader("Content-Length",b.Length.ToString()); response.AddHeader("Content-Disposition", "attachment; filename=" + FileName); response.BinaryWrite(b); response.Flush(); response.End();

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET help sysadmin question

  • File not being read by JSP
    A adatapost

    You have to upload music file and then after you may play it.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    Java java sysadmin

  • How to set the menu width using css
    A adatapost

    Please refere this link http://www.highdots.com/css-tab-designer/[^]

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    Web Development css help tutorial question

  • Print XSLT?
    A adatapost

    Copy the content of XSLT file into MSWORD and print it.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    XML / XSL html xml help question

  • Exception inside dll
    A adatapost

    You should review of Execute method code.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    C# database csharp tutorial question

  • error Must declare the variable '@pname'.
    A adatapost

    Name of parameter should be "pname" not a "ProductName". <asp:Parameter Type="string" Name="ProductName"></asp:Parameter> <asp:Parameter Type="string" Name="pname"></asp:Parameter>

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET csharp asp-net sysadmin help announcement

  • this.Profile is not latest after Profile.Save()
    A adatapost

    But you are saving profile after that and the new value of profile will not available to you until postback. Isn't it?

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET question

  • this.Profile is not latest after Profile.Save()
    A adatapost

    Due to the sequence of event you got such result.

    A DATAPOST COMPUTER CENTRE (K.V Prajapati)

    ASP.NET question
  • Login

  • Don't have an account? Register

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