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
S

sashidhar

@sashidhar
About
Posts
631
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Calender
    S sashidhar

    Thts not the way the extenders work..!As the name suggest it is an extender for other controls. http://www.asp.net/ajax/ajaxcontroltoolkit/samples/[^] Try to get a good Book.thts all I can say for u..!

    LatestArticle :Alternative Way to Interact with Desktop thr windows services

    ASP.NET help question

  • Connecting to Database
    S sashidhar

    Search Google[^]

    future3839 wrote:

    Do I have to add the database file in App_Data folder?

    :omg: First try to read basics .How are the database interact with GUI ?What are connection strings?and all the basic stuff.Then you can start developing. :cool::thumbsup:

    LatestArticle :Alternative Way to Interact with Desktop thr windows services

    ASP.NET database question sql-server sysadmin help

  • New to ASP.Net
    S sashidhar

    As Mark Suggested plz mention your question in heading..!

    jashimu wrote:

    I don't know where to start.

    Beginner's Walk - Web Development[^]

    LatestArticle :Alternative Way to Interact with Desktop thr windows services

    ASP.NET csharp asp-net help

  • Url refere is null in safari
    S sashidhar

    A quick Search in Google give me this..!Try this may be it will help You..! http://forums.asp.net/t/941229.aspx[^] http://weblogs.asp.net/dannychen/archive/2005/11/21/431121.aspx[^] Google Search[^]

    LatestArticle :Alternative Way to Interact with Desktop thr windows services

    ASP.NET question

  • question about IsMobileDevice
    S sashidhar

    Try this link..! http://51degrees.codeplex.com/[^] http://mdbf.codeplex.com/[^]

    jrahma wrote:

    why?

    By default the aspx file take the browser as system in order to specify its a mobile we should install Aspnet_regbrowsers.exe from the below specified folder Once you install C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regbrowsers.exe or C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regbrowsers.exe You will find the browser detection files in C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers or C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\Browsers http://msdn.microsoft.com/en-us/library/ms229858(VS.80).aspx[^] Hope It Helps..!:cool::thumbsup:

    LatestArticle :Alternative Way to Interact with Desktop thr windows services

    ASP.NET question com help

  • shorting in gridview
    S sashidhar

    SayamiSuchi wrote:

    , then when user clicks ID, it should sort with ID and when user clicks Name

    Its rally a good thing to implement.You Have to handle programatically..! may be the below article may help..! http://dotnetslackers.com/articles/gridview/SortingaGridviewwithmultipleColumns.aspx If u have any more problems let me know:thumbsup:

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET database question

  • Iframe containing PDF
    S sashidhar

    Set the width and height..! Check this Post http://stackoverflow.com/questions/1027948/transparent-iframe-ontop-of-pdf-in-iframe[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET tutorial

  • Vertical gridveiw header text make header column width changed
    S sashidhar

    i Think as far as my understanding it the problem with the browser related issues..!So you have fix the width..! This is Only my understanding of your question..!

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET help css question

  • Get DateTime according to country.
    S sashidhar

    You can Convert the date time from us format to indian format by converting to utc and adding the hrs. OR Use Javascript to get the client time

    var localTime = new Date();
    var hours = localTime .getHours();
    var minutes = localTime .getMinutes();
    var seconds = localTime .getSeconds();

    I think It can be done using culture i never used it try the below link similar post..! http://relatedterms.com/thread/1394580/Date%20%20%20Time%20issues%20with%20different%20timezones%20for%20server%20%20%20client[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET question sysadmin help

  • youtube video in asp.net
    S sashidhar

    check this links..! http://code.google.com/apis/youtube/2.0/developers_guide_dotnet.html[^] http://chiragrdarji.wordpress.com/2008/09/16/integrate-youtube-in-aspnet/[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET csharp asp-net tutorial

  • ASP.Net vs MVC
    S sashidhar

    it depends upon your requirement of the client..! If you want to start with MVC ,you have to complete it.Why to start without knowing that architecture.IMO start with Asp.net. If you are trying to do an application for practice you can try with MVC.

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET asp-net csharp visual-studio architecture question

  • Session
    S sashidhar

    MorgSim wrote:

    timeout ="1"

    Whats This..! Try this link it may help..! http://msdn.microsoft.com/en-us/library/h6bb9cz9(vs.80).aspx[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET csharp asp-net help question

  • Gridview with subheaders below....
    S sashidhar

    Refer this link below http://1diot.blogspot.com/2007/10/creating-subheader-in-gridview.html[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET css wpf wcf algorithms tutorial

  • Database Connection in asp.net
    S sashidhar

    first check the database tht if you can access from your system using sqlserver management studio. If yes There will be no problem just specify the correct connect string as brij suggested.

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET question csharp asp-net database

  • pass javascript variable to asp.net function
    S sashidhar

    Then the other approach is using webservice Refer this article..! http://www.asp.net/AJAX/Documentation/Live/Tutorials/ConsumingWebServicesWithAJAXTutorial.aspx[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET database csharp javascript asp-net question

  • pass javascript variable to asp.net function
    S sashidhar

    To My knowledge use hidden control for that .I mostly uses that. Its Only a suggestion . http://www.dotnetcurry.com/ShowArticle.aspx?ID=203[^] If this the way you dont want please ignore..!

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET database csharp javascript asp-net question

  • pass javascript variable to asp.net function
    S sashidhar

    Why dont u use hidden field..? are u trying to call a method? what is bindAdvancedFilterData()? in here..!

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET database csharp javascript asp-net question

  • how to retrieve image from database into a adrotator
    S sashidhar

    Here is the sample code to show in page from database which i used earlier..!

    byte[] arrContent = null;
    DataTable dt = new DataTable();
    DataRow dr = default(DataRow);
    int id = Convert.ToInt32(Request.QueryString["id"]);
    //string username=Page.User.Identity.Name;
    //Getting the Image
    dt = PlayerInfo.ImagSelect(username);
    dr = dt.Rows[0];
    //storing it in array
    arrContent = (byte[])dr["photo"];
    int length = arrContent.Length;
    Response.ContentType = "image/JPEG";
    if (length!=0)
    Response.OutputStream.Write(arrContent, 0,length);
    Response.End();

    You can check this link to sample Image Control..!

    ships_agr wrote:

    i connected the adrotator to sqldatasource through a configure datasource wizard and when i tested the query there in wizard it worked f9...but on running the application no image is displayed in adrotator

    It Should be converted to binary format .You can visible the image thr wizard but not in page..!

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET database csharp help tutorial question

  • Print in Landscape format
    S sashidhar

    Check this Post it may help..! http://forums.asp.net/t/1302358.aspx[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET

  • Printing MSChart in asp dot net
    S sashidhar

    Try this link it may help..! http://stackoverflow.com/questions/816090/printing-asp-net-3-5-chart-control[^] Pass the control http://www.dotnetcurry.com/ShowArticle.aspx?ID=92&AspxAutoDetectCookieSupport=1[^]

    LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.

    ASP.NET csharp 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