13,153 Topics
| |
Hi guys.. Can anybody tell me about how to increment default session timeout(20 mins) in dot net..? It's urgent.. Hope anybody will help me.. Thanks in advance... | |
Hi guys, i just want to know in ASP. net how do I run without error when I click the edit button in the gridview then another page will appear to update and save. heres the code. Can anyone help me.? Thanks. CODE ASP. NET [code] <asp:GridView ID="GridView1" runat="server" AllowPaging="True" … | |
i can create an asp.net application but i don't know how to compile it to run. can somebody help me on how to make it run because at the moment, it runs on visual studio alone. how can i make it run in an environment without vb.net IDE? | |
Dear All, I am having a problem with reports in a web application with C#. The reportviewers are old style (the application is old, was written with the framework 2.0) and I actually had to hack the reports to make them work. Now, the reports work fine except for two … | |
i am making my final project ov ONLINE SHOPPING boutique . i want to add ALERTPAY account for transaction in my site . means customer who wants to purchase can transfer money through ALERTPAY... i m very confused that what is the method for it? or only mention ALERTPAY is … | |
hi there, i am making an application for a purchase order and i am creating the purchase order form. in the form there is a table with 5 columns and 3 rows. the 3 rows is the default number of rows in the purchase order application form. when the user … | |
hi, my website was working fine, then I have added this code in my master page: [CODE] Dim css As New HtmlLink css.Href = ResolveClientUrl("~/JS/jquery_ui_1.8.1.4/jquery-ui-1.8.14.custom.css") css.Attributes("rel") = "stylesheet" css.Attributes("type") = "text/css" css.Attributes("media") = "all" Page.Header.Controls.Add(css) Dim jquery_ui_core_min As New HtmlGenericControl("script") jquery_ui_core_min.Attributes.Add("type", "text/javascript") jquery_ui_core_min.Attributes.Add("src", ResolveClientUrl("~/JS/jquery_ui_1.8.1.4/jquery.ui.core.min.js")) Me.Page.Header.Controls.Add(jquery_ui_core_min) Dim jquery_ui_widget_min As New HtmlGenericControl("script") … | |
can i using gridview to create friends list like this? [URL="http://www.4shared.com/photo/xxPeJoHG/tanya.html"]http://www.4shared.com/photo/xxPeJoHG/tanya.html[/URL] | |
im trying to enable a button that is disabled within an itemTemplate, if theres a session then the button will be enabled. however i cannot access the button object in the code-behind file. HTML CODE ---------- [CODE] <div id="gal_wrap"> <asp:ListView ID="ListView1" runat="server" EnableModelValidation="false" OnPagePropertiesChanging="listItems_PagePropertiesChanging"> <LayoutTemplate> <asp:PlaceHolder ID="itemPlaceholder" runat="server" /> </LayoutTemplate> … | |
[code] While dr.Read() //read from access database Dim tb1 As New TextBox() tb1.ID = "tb" + i.ToString() WallDiv.InnerHtml += dr(0) WallDiv.InnerHtml += "<br>" WallDiv.InnerHtml += dr(1) WallDiv.InnerHtml += "<br>" WallDiv.InnerHtml += dr(2) 'Create TextBox under each Comment WallDiv.Controls.Add(tb1) i = i + 1 End While [/code] Problem is that :-Loop … | |
hi guys, Can you help me. How can I delete the uploaded photo ?? if I click the delete button message box appear and asking if I am sure to delete the photo, if I choose the Ok button the image was still there. How can I remove that?? what … | |
I have a workflow application which i run it with WorkflowApplication command. And i am tryng to print the outputs of the workflow with the following code. [CODE] IDictionary<string, object> output = null; app.Completed = delegate(WorkflowApplicationCompletedEventArgs o) { output= o.Outputs; HttpContext.Current.Response.Write(output["res"]); }; [/CODE] When i run the application i get … | |
Hello I'm currently using GridView.Sort("Column", ASC") It works perfectly and sorts my gridview, however once I get to 10 or higher the sort order stops working and it goes. 1,10,2,3,4,5,6,7,9. Here is my code would anyone care to explain why it does this? [CODE] DataSet ds = new DataSet(); ds.ReadXml(Server.MapPath(@"xml\" … | |
Hey there I need this problem to be solved. These ListItem controls should display images when you select item. When I debug it, the image flash blank. I cannot find incorrect codes. Look at bold codes below: [B]Markup:[/B] [code] <form id="Form1" method="post" runat="server"> <asp:ListBox Runat="server" ID="dlist1" SelectionMode="Multiple" onchange="swapImage1()"> <asp:ListItem Value="../Images/photo1.jpg">Photo … | |
how to create a web link to ASP.NET from windows application | |
I've two Drop Down List Box in a form and need to change the 2nd dropdown lists value on selection of 1st dropdownlist. I've following code [CODE]<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="c:\dbase.mdb" SelectCommand="SELECT [CcompCode], [compname] FROM [mymain]"> </asp:AccessDataSource> Company Name<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="AccessDataSource1" DataTextField="compname" DataValueField="CcompCode" onselectedindexchanged="DropDownList1_SelectedIndexChanged"> </asp:DropDownList> <br /> Financial Year<asp:DropDownList ID="DropDownList2" … | |
I am trying to download a selected FTP file from an FTP site in ASP.Net and VB.Net. Earlier I was having problems that the box wasnt registering my selection being made, but now it is. However, when I go to download the file I get an error message that says: … | |
Hi I've written this code (that works) to inserts registration details into an Access 2010 DB from an aspx registration page. How do I check for duplicates Email before inserting a new record into the DB Dim strConn As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\InetPub\WWWRoot\BushHouseGibraltar\Bush.accdb;Persist Security Info=False;" Dim MySQL As String = … | |
Hi I was created one web application. In which i am using the ajax control asyncfileupload file uploader in update panel. Upload file correctly but when i refresh the page then double this file is uploaded.. how to fix this problem in asp.net? please help me how to postback the … | |
Hello I'm currently trying to get my GridView to update all rows at the same time. The gridview takes data from an .XML file - I can use the 'onRowEditing' to update a single row at a time - however I want it to be able to update all rows … | |
Hi I am trying to get the values from dropdown list but everytime it selects the default value asp code: [CODE]<asp:TemplateField HeaderText="Customer Id" sortexpression="cust_id"> <EditItemTemplate> <asp:DropDownList ID="ddl1" runat ="server" OnLoad="ddl1_load" ></asp:DropDownList> </EditItemTemplate> <ItemTemplate> <asp:Label ID="lblc" runat="server" CssClass="label" Text='<%#Eval("cust_id")%>'></asp:Label> </ItemTemplate> <HeaderStyle BorderStyle="Inset" Font-Bold="True" Font-Underline="True" ForeColor="Teal" /> </asp:TemplateField> [/CODE] code behind: [CODE]Protected … | |
Hi, I am using c#. I have a problem of finding the difference between 2 dates in terms of year,month and day. For example Finding the difference of 2 dates(mm/dd/yy). date1=12/3/2010 date2=3/5/2011 I used the following code [ICODE] int year=date2.Year-date1.Year; int month=date2.Month-date1.Month; int day=date2.Day-date1.Day; [/ICODE] The output I am getting … | |
Hello friends. I have a webpage (my.aspx). In that page i have some controls inside div tag and some controls outside div tag. Now i want the html source of those controls which are [B]inside[/B] div tag using JAVASCRIPT. How can i do this. I got the code with which … | |
hi guys, Can you help me. How can I delete the uploaded photo ?? if I click the delete button message box appear and asking if I am sure to delete the photo, if I choose the Ok button the image was still there. How can I remove that?? what … | |
Hello I'm trying to include a dropdownlist in my gridview and then bind data to that dropdownlist. I have come across an error: [quote] error CS0103: The name 'sortOrderDropDown2' does not exist in the current context at System.Web.Compilation.AssemblyBuilder.Compile() [/quote] Now i'm not sure why I get this error as my … | |
Dear All, I am working on an existing web application trying to integrate reports. The application was developed with the 2.0 Framework. I converted it to 3.5 since I could not use the ReportViewer with the 2.0. Trouble I get a lot of errors. What can I do? Does anybody … | |
Hi, I just want to know if it is possible to have a fading notification using asp.net?? like in outlook and facebook if there is incoming message or notifications for you. Thanks | |
How to show image from database and price of that image using param sql query? |
The End.