13,153 Topics
![]() | |
I just spent an hour trying to figure out why i cannot change the CssClass property of <asp:TextBox> Whatever i enter in the property defaults to [B]class = "textbox"[/B] when i render the page. What's going on??? Does anybody know a solution? I have 2 different input types i have … | |
Hello Everyone, I am new to ASP.net. I recently developed a application using VS2005 that uses a SQL database. This application contains a Login page Main.aspx. This page redirects to second page after authentication (avlActions.aspx) using FormsAuthentication.ReDirect. This works when i run application from VS2005 and locally on IIS after … | |
hi guys, newbie here, I want to make a login page based on VB.NET language and I have a problem basically, I have a SQL database table named XYZ and the columns are id, username, password, and type type is to determine wether the user logging in is a user … | |
plz tell me about how to use common database using dbfactory?as soon as possible. | |
ineed help how to making formview vertical in asp.net? best regards, martin | |
I was wondering if it is possible to assign 2 variables to DataView.RowFilter. if it is, how do I code it. I have tried this: [CODE]dataView.RowFilter = FilterExpression + " and " + ARRAFilterExpression; [/CODE] FilterExpression and ARRAFilterExpression are both string variables with string values stored in them. Thanks | |
Hi there, i m developing an application.in it i have a page which contains free text box control in it.now the problem is that when i copy some data into clipboard & paste it in the free text box and save the data then the data is not being saved. … | |
Hi Everyone, My site is built in ASP on the BlogEngine platform. Not too long ago, I created a blog to help with our SEO. However, my site structure wouldn't hold the blog, so we created a subdomain for it with a total different script. The problem with the blog … | |
hello all, i want to question how to i get value query sql in asp.net c# example: this is my sample code: [CODE] string no_hp = ""; string queryNoHP = "SELECT NO_HP FROM REF_OWNER WHERE ID = '" + ID.Text + "'"; [/CODE] i want to how to get value … | |
I am looking for advise on a new development application we are starting. I have to write 6 programs to create 6 different reports in text and excel formats (CSV). The related GUI application will launch either Notepad or Excel to view the reports. One of the reports will be … | |
I have implemented Google search in my web application. It is asking for license key.... where i should sign up... how to get license key? Plz its very urgent Plz do reply | |
Hello Sir, On Button_click event I have simple code below to compare strings in asp.net [CODE] string temp1=Button1.Text;// gives string "check" string temp2="check"; if(string.Compare(temp1,temp2)== 0) //but it return -1 { btnPreview.Text = "complete check"; } [/CODE] what is wrong with this? Can anybody help me ..? | |
[CODE]using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using System.Web.Security; using System.Data.SqlClient; using System.Configuration; using System.Security; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { txtUserName.Focus(); } private void InitializeComponent() { this.cmdSubmit.Click += … | |
my job is 1.maximize 2.smoothing when i just write maximize part and ran it work fine for 550-600 pixel and when i just write smoothing part and ran it work fine for 5500-6000 pixel. but when i attached both code failed at maximizing point. i want to know why and … | |
I can't change the text of a linkbutton that is placed in a repeater. I want the text to change when I click the button. [CODE] <asp:Repeater ID="rptSearch" runat="server" > <HeaderTemplate > <table border="1" width="100%"> <tr> <th> Bild </th> <th> <asp:LinkButton ForeColor="Blue" Text="Visa billig" OnClick="SortList" EnableViewState="true" ID="lkbSort" runat="server"></asp:LinkButton> </th> </tr> … | |
![]() | I have top menu being generated using sitemap. HR , Production , Sales Now i want to generate a vertical Menubar/treeview when i click on respective item. For eg : if i click on production, i need menu/tree view like below 1.0 - Inventory 1.1 - Add Stock 1.2 - … |
Hello, I am working on a seemingly unique file uploading project where files that are dropped onto a server are programmatically uploaded to an ms access db (don’t ask, I’m already pushin for sql) I believe the problem lies in converting the ftp stream to binary and then to the … | |
Hi, I am using following code to extrcat Text from .doc file. Code:: [code] FileStream fileStream = new FileStream("F:\\Resume_Rajib_Ghosal.doc", FileMode.Open, FileAccess.Read, FileShare.None); StreamReader srd = new StreamReader(fileStream); while (srd.Read() > 0) { string text = srd.ReadToEnd(); } srd.Close(); [/code] But aftering extracting when i search kewords as xml,hidden,control,form,html as so … | |
Hi I'm fairly new to asp.net and here's my project: my company runs a website that provides daily video broadcasts to our clients. our clients have access to a specific link which I will call "videolink.aspx" and that's hosted in the address [url]http://www.mycompany/videolink.aspx[/url] in which there is a windows media … | |
[B]It's long but simple. I have only explained the problem in detail.[/B] After searching a lot i did not get any answers and finally i had to get back to you. Below i am explaining my problem in detail. It's too long, so please don't quit reading. I have explained … | |
hii all i am trying gridview control in my application.code is executing without errors.but i am not getting output means(internet explorer is coming blank). [CODE]using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Data.SqlClient; … | |
i have created ms word document dynamically with text area tag through c# code in asp.net let me know how to lock/protect the document by code, so that no one can change the style of it.. except text area content. | |
Hi EveryBody.I'm developing a custom application in .net platform using C#. I've a databound gridview on which I've the records. Now I want to print the records individually on a separate page. Will anubody help me out......... | |
where can i download free asp.net themes? | |
Hello Everyone, I have ASP.NET from with a few links if I click one the link its open in new window and when I close this window the parent windows automatically refresh. Thanks, Farooq | |
[CODE] int[][] jaggedArray = (from line in File.ReadAllLines(fileName).Skip(1) select (from item in line.Split('\t').Skip(1) select int.Parse(item)).ToArray()).ToArray(); [/CODE] This is a crazy example. It was sparked by what is probably a homework thread on another forum here, but it is basically reading in a tab-delimitted text file, stripping out the first row … | |
Hi all, I'm stumped...everything on my page is happening twice. Every method is getting called twice. Any idea why something like this would happen? Markup of page: [CODE] <%@ Page Language="VB" AutoEventWireup="false" CodeFile="MatchActivitiesToReqs.aspx.vb" Inherits="ScoutingWithTheMouse.WebBrowser.Admin_MatchActivitiesToReqs" %> <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> <%@ Register Assembly="Telerik.Web.Design" Namespace="Telerik.Web.Design" TagPrefix="telerik" %> <!DOCTYPE html PUBLIC … | |
Please excuse me for posting this question here as I did not find any other place. I am looking for project management tool in .NET which is open source (comes with source code for extension/customization). I googled found few open source project mangement tools like: 1. Redmine but it has … | |
Hi All, I bought Microsoft Expression Web recently i made a website it is going well so far but then i decided to make a ASP.NET website because the option i needed was only for ASP.NET websites so i made one then as I viewed it (test view) on my … | |
Hello Everyone, I have developed an application for website using ASP.NET and SQL Server 2005. Recently I have uploaded it to server, but after uploading its showing the following error message - [B] Login failed for user ''. The user is not associated with a trusted SQL Server connection.[/B] [B]Description:[/B] … | |
Hi, I have an IIF function in my textbox expression.This is my code. IIF(IsNothing(Fields!Duration.Value) , "Not released ",Int((Fields!Duration.Value/12)).ToString()+ "Y " +(Int(Fields!Duration.Value) Mod 12).ToString() + "M") But when Duration is null the true expression doesnt work instead it displays "#error".Can anyone help me to fix this? Thanx in Advance | |
hello this is my question i want to know the best book to start learning ASP.NET and lets say that i dont have any idea about asp or asp.net so i want to know a goob book to start with and learn from it asp.net and i have another Question … | |
Hi, I want to extract text from PDF in C# asp.net. I am using this code as following link :: Link:: [url]http://www.codeproject.com/KB/cs/PDFToText.aspx[/url] But this code is not working properly. The main problem is that when i get output file they have no that content which are in Inputfile. Is there … | |
I need to create some kind of web interface that will allow users to view all of our conference room Outlook calendars/availability at one time. From there, they should be able to select a date/time and automatically bring up a new appointment in their Outlook client and schedule a meeting … | |
hi I developed a website using asp.net 2005 express edition and msaccess 2003.In my computer it is working.but after deployed it in server i can retrieve images from server but cannot insert any to it.Is it the limitation of asp.net 2005 express edition. | |
hi everyone I have a website which was deployed by some one a year back...now I have to make some changes to it. So I downloaded entire source code of that website and opened it on local machine asp.net But it is read only..I can't drag and drop controls on … | |
HI every one. I had code to create image buttons dynamically to show images from folder in web application using C#.net,i want that if the mouse pointer is over an Image(or on image button Click event)then it should show full image with respect to that image button . will it … | |
Hi All, We had a web application build on VS 2005 in .NET Framework 2.0 but then we converted web application to VS 2008 in same .NET Framework.The issue with Solution file it get compliled successfully in VS 2008 but whenever we browse login page it shows Parser error. Please … | |
i am it student. i have develop my website in asp.net 2.0 the resolution not be set in mozila firefox web browser so what i can do | |
iam working on asp.net project and in that i want to change images in given time interval....like i had 10 images and every images changes after 5 seconds... i want to use flash for that...cud anyone solve my problem..... | |
I have a Sharepoint (WSS) question that due to the keywords make it difficult to effectively find solutions on the web. We are trying to roll out a new Sharepoint site, but have some PR commitments to keep our original front page. I would like to know if there is … | |
If we want to change the property of a control on the page., for example the text of a button, which two options do we have available to make the change? 1 option is through property window??? do anybody can tell me anything else then that???? plz reply me ????? | |
m using folowing code,it is worlking fine,on my machine but not working after deploying it to the server { ProcessStartInfo psi = new ProcessStartInfo(MapPath("MaxMinTest.ppsm")); Process p = new Process(); if (psi.FileName.Contains("pptx")) psi.Verb = "Show"; p.StartInfo = psi; p.Start(); } | |
Today we were talking about using new databound controls in asp.net 2.0, i have been trying to persuade my partner to use these controls but he has been refusing and saying that those controls are not flexible enough. Then he challenged me to populate a dropdownlist in a formview; with … | |
Hello Can any one help me to find out a shopping cart systems that work with Authorize.Net? :( | |
i have a datalist,it's itemtemplate is inside an updatepanel,in which i have a button whose click event is not being fired plz help | |
I am writing a VB.Net program in an .aspx page that searches for a particular .htm file. Once the file is found, I'd like to launch the .htm file in the client browser. Can this be done from my server-side code? | |
Hi , i have created word document dynamically and sending with email as attachment in c# asp.net. the created document contains html controls like text area. My Requirement is once email send to a person.. the person has to enter only in the text area .. he cannot do any … | |
hello every one i am creating an web site with the help of master & container pages in one container page an ok button is available. now when i press shift + 1 the button text is changed from ok to find can any one tell me the script for … |
The End.