Search Result

Collapse
265 results in 0.0045 seconds.
Keywords
Members
Tags
asp.net
  •  

  • khiat
    started a topic IIS stopped Working

    IIS stopped Working

    I am developing web application using (C#) and (ASP.NET Web API) and MS SQL 2008 R2 and hosting on IIS7 in Windows Server 2008, All APIs return data in JSON

    When i call any API from any web browser and refresh the page to call again before the first call finishes it give me warning in the event viewer and after 0 to 5 minutes the worker process in the II7 stopped for about 2 minutes(hang) and all APIs calls from all users at the period...
    See more | Go to post

  • RakeshKumar
    started a topic btn disable but not enable

    btn disable but not enable

    when i click btn control disable btn using javascript then btn click event call. inside btn click event i write code which gives me report in excel/pdf format for that i use method ExportToHttpRes ponse(ExportFor matType.Excel, Response, true, "Report Name") which gives me exception so after this method or finally block when i write btn.enable=true ; or use javascript then not executed. exception is Unable to evaluate expression because the...
    See more | Go to post
    Last edited by Frinavale; Jun 14 '12, 04:25 PM. Reason: Added code tags.

  • How to retrieve a Music Flie and play it in yahoo Player or Any Other Player.

    Please help me how can i play a music file which is stored in sql server...

    yahoo player code is as follows :

    Code:
    <script type="text/javascript"> var YWPParams = { termDetection: "on" }; </script>
    <script type="text/javascript" src="http://webplayer.yahooapis.com/player.js"></script>
    div :

    Code:
    <a href="http://mediaplayer.yahoo.com/example3.mp3">Yodel
    ...
    See more | Go to post
    Last edited by Frinavale; May 23 '12, 07:16 PM. Reason: Fixed code tag

  • lightwalker19
    started a topic I need to do a post with comments. help

    I need to do a post with comments. help

    hello i need to do a post with comments, im using a listview to view the posts, and comment too, but the list view only lets me see the posts when the table comment has data... even if the table post is full of data it wont display because the table comment has no data... how can i overcome this??
    See more | Go to post

  • Displaying with multiple colors inside TextAreia

    TextAria doesn't allow to display with different color inside it. I need to display the first line with black, other lines should be gray. How to do that? I have tried CKeditor but the same problem it displays the last specified color. I am developing an asp.net website in C# using Visual Web Developer.
    See more | Go to post

  • Using jquery autocomplete from database in asp.net - couldn't get minLength working

    Hi,

    I want to use jquery autocomplete from database in asp.net. I got it working except the minLength option. As shown in the following code, I tried a few ways but couldn't get minLength option working. Please shed light on this. Thank you.

    Here is my code:
    Code:
        <script src="../../../jquery/jquery-1.7.2.js" type="text/javascript"></script>
        <script type="text/javascript"
    ...
    See more | Go to post

  • How can i bind Profile.property to datalist label?

    i have the property UserName and FullName. i am already returning The username like

    Code:
     <asp:Label ID="DeLabel" runat="server" Text='<%# Eval("De") %>' />
    But what i want is something like this

    Code:
     <asp:Label ID="DeLabel" runat="server" Text='<%# Eval(Profile.GetProfile("De").GetPropertyValue("FullName").ToString()) %>'
    ...
    See more | Go to post

  • How to use friendly URL to identify another user page?

    I'm using a normal asp.net c# web application, and i want to do sort of a social network, so far so good, but i cant figure how to make my save button, that saves a text, to get the user id of my friend page, i think i can do it by getting the UserId in a image URL.
    for example Facebook allows you to post something into your wall, but it saves info about who sends the post and who receives it. that's my goal, i don't know how to do this....
    See more | Go to post

  • Using WebClient to download string from ASP.NET Web Service Error

    I have a simple ASP.NET Web Service:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Web;
    using System.Web.Services;
    using System.Web.Script.Services;
    using System.Web.Script.Serialization;
    using System.Web.UI.WebControls;
    using System.Web.UI;
    
    namespace WebService1
    {
        /// <summary>
        /// Summary description for Service1
    ...
    See more | Go to post

  • Detailsview updates only once when tied to gridview

    Here's a problem that has me scratching my head. I have a gridview and a detailsview tied together, so that the user selects an item in the gridview, and then edits it in the detailsview. I run a databind on the gridview in the itemUpdated event handler for the detailsview.

    Everything works fine ... until you try and edit the same record twice in sequence. At this point the data isn't written to the database. For example, I can edit...
    See more | Go to post

  • make a list of all the numbers in a listbox

    i want to make a list of all the numbers in a listbox(sql data source) and then delete all the numbers in a dropdownlist all the numbers found on listbox....

    i have no idea how to do this..
    i managed to get the numbers in the correct order, but for example i add 1 to the the listbox,my dropdownlist would start at 2 but then add 15, meaning my dropdownlist would start at 16 and 2,3,4,5..16 is gone ... basically what i want to...
    See more | Go to post

  • How to call update pane refreshing by list view row click

    Hi!
    I have ListView with such markup:

    Code:
    <asp:UpdatePanel ID="updateMyDocs" UpdateMode = "Always" runat="server">
            <ContentTemplate>
    <asp:ListView ID="dataViewFiles" ItemPlaceholderID="itemPlaceholder" runat="server"
                                                   DataKeyNames="Id" OnItemDataBound="dataViewFiles_ItemDataBound"
    ...
    See more | Go to post

  • Reading windows fax service job status in ASP.NET

    I have developed a web site to show job status of our fax server. I use windows fax service (fxscomex.dll interop). when I am debugging from VS2010 (using development sever), everything is fine, I can read jobs status of, but when I run my web site under IIS, job queue is always empty.

    here is my code to check sent items:

    Code:
    FaxOutgoingMessageIterator sentItems = fxServer.Folders.OutgoingArchive.GetMessages(100);
    ...
    See more | Go to post

  • how do i select everything except a UserName in sql?

    hi, basically what i need is to "block" a username(
    Code:
    @username = Profile.Username
    meaning i want to block the current user online) in the SQL statement
    Code:
    SELECT
     vw_aspnet_UsersInRoles.UserId, vw_aspnet_Users.UserId AS Expr1, vw_aspnet_UsersInRoles.RoleId 
    AS Expr2, vw_aspnet_Roles.RoleId, vw_aspnet_Users.UserName, 
    vw_aspnet_Roles.RoleName, aspnet_Profile.UserId 
    AS Expr3, aspnet_Profile.PropertyNames
    ...
    See more | Go to post
    Last edited by lightwalker19; Apr 12 '12, 03:28 AM. Reason: update

  • ahmed naguib
    started a topic render controls in div at run time?

    render controls in div at run time?

    i have atext from jquery method :

    Code:
    <fieldset>
    <ul id="ContentPlaceHolder2_1g" class="profList column ui-sortable">
    <legend class="group">المجموعه 1</legend>
    <li id="ContentPlaceHolder2_8">محمود حسن ابراهيم
    ...
    See more | Go to post
Working...