Search

You searched for the word(s): userid:708909

Matching Posts

  • Need Help Choosing Office Version For Deployment of ASP.NET Project

    Hello Guys, I have developed website in asp.net 2.0 c#. I have MS Office 2003 Pro Edition. I am using interop library and added reference of Excel Object Library 11.0 (though I am sure lesser version of this like 9.0 will also work with it) for multisheet reporting (I don't know if there is any other way to do it). Also I gave public access to "Microsoft Excel Application" DCOM application to work with website. I would like to know which is the least version (least in terms of price
  • Error redering custom user control

    I have created custom button for my web application. Although it is working fine while running application, I get following error when I put the control on page. Following is the code of the control ---------------------------------------- public class WebButton : System.Web.UI.WebControls.Button { //Some Variable declaration //Some properties to access above variables protected override void OnPreRender(EventArgs e) { if (Some condition) Attributes["onclick"] = "return deleteHandler
    Posted to Web Forms (Forum) by Nitin Pawar on 8/22/2007
  • Ajax and Viewstate variables

    Hello Everyone, I wanted to keep a counter for the page, which will increment or decrement based on button clicks. These buttons are kept in UpdatePanel so not page refresh happens. I decided to use viewstate variable as counter, I am initializing that variable to 0 for the first call. but I found that for every click I have to initialize the viewstate variable as it is not maintained across Ajax request calls,. Is there any workaround for this? Thanks in advance, Nitin Pawar
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by Nitin Pawar on 7/13/2007
    Filed under: Ajax Viewstate
  • DropDownList and Ajax

    Hello Everyone, having very weird bug , page consists of following controls - DataList to show records - object data source - PagedDataSource for paging of datalist (code behind) - DropDownList for selecting paging size with values 3, 5(default), 10, 15 All above controls are kept in UpdatePanel. Working of page On DropDownList1_SelectedIndexChanged event I am setting PagedDataSource1.PageSize to DropDownList1.SelectedValue, then bind the DataList Control to show the records. This works fine for
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by Nitin Pawar on 7/13/2007
    Filed under: ajAX dropdownlist
  • persist dropdown list selected value across content pages of master page

    Hi All, I have a dropdown control in the master page in my project. The content pages are dependent on the value selected in the dropdown control. The problem is if the dropdown is selected in one page do not retains it's value while navigating to other content pages I need to keep the selected value persistent across the content pages. Does somebody know how to accomplished this. Thanks in advance, Nitin
  • conditional dynamic SQL in stored procedure, not returning any result

    Created a stored procedure which returns Selected table from database. I pass variables, according to conditions For some reason it is not returning any result for any condition Stored Procedure ALTER PROCEDURE dbo.StoredProcedure ( @condition varchar (20), @ID bigint , @date1 as datetime , @date2 as datetime ) AS /* SET NOCOUNT ON */ IF @condition LIKE 'all' SELECT CllientEventDetails.* FROM CllientEventDetails WHERE (ClientID = @ID) IF @condition LIKE 'current_events' SELECT ClientEventDetails
  • Re: ASP.NET Dropdownlist - "Cannot have multiple items selected in a DropDownList."

    Hi All, I am having same problem but with different code. I have 3 dropdown box, named ddDay, ddMonth, ddYear. In the page i am using javascript for date validation using Custom Validation Control Javascript ========================================================= function findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i
  • sql server 2000 to mdf database file

    I know I know this is kind of reverse thing I am asking. but as I am working on project and it is very time consuming to connect every time I want to for modifying database or dataset.
  • Re: Error on <authentication mode="Forms" /> , While deploying prcomplied website

    the problem was from server side, and solved by service provider.
  • SqlDateTime overflow when passing date parameter to objectdatasource

    Backgroud using objectdatasource to bind gridview using table adapter as source query in table adapter is "SELECT ... FROM ... WHERE (DATEDIFF(D, EventFrom, ISNULL(@EventFrom, EventFrom)) <= 0) AND (DATEDIFF(D, EventTill, ISNULL(@EventTill, EventTill)) >= 0) AND (ClientID = @ClientID)" Clientid parameter is set by session at design time programmatically setting parameter to objectdatasource as follows Protected Sub odsEvents_Selecting( ByVal sender As Object , ByVal e As System.Web.UI.WebControls
Page 1 of 2 (11 items) 1 2 Next >