13,153 Topics
![]() | |
i want to say this rule by javascript in asp.net page: for any controls in page if control[i].text=" " then set control[i].text="" (for page textbox controls only) how can i implement this in javascript language in asp.net form? | |
Hello sir, I have problem in getting values of textbox which in .ascx file (user control). at aspx file(the file at which control is added). code is as below. code in .ascx file [CODE]<%@ Control Language="C#" AutoEventWireup="true" CodeFile="attachfile.ascx.cs" Inherits="attachfile" %> <asp:TextBox ID="TextBox1" runat="server" meta:resourcekey="TextBox1Resource1"></asp:TextBox> <br /> [/CODE] code in .ascx.cs … | |
Can anyone help me??? I need to put the TabControl in the WebApplication... but i dont know how i do that??? | |
hello i'm looking for some help for the following problem. i developed a asp.net 2.0 multilanguage webpage using localization with resource-files (FR and EN content). all of my aspx - pages are in the same folder but i want that the search engines detect the text of both languages. to … | |
[b]Split from - [url]http://www.daniweb.com/forums/thread18153.html[/url] [/b] I am in final year of mca I want to do project on banking using the RSA algorithm in net banking please give me the tips for developing the project in asp.net Thank you! | |
Hi, I am trying to send email from my website using Exchange server 2008. The setting is like my web server is on different machine then my exchange server. when I try to send email from my website using exchange it gives me an Exception "Unable to Connect to the … | |
protected void Button1_Click(object sender, EventArgs e) { MailMessage message = new MailMessage(); message.From = new MailAddress(YourEmail.Text.ToString()); message.To.Add(new MailAddress("purohit.mith@gmail.com")); message.Subject = "Message via mith from " + YourName.Text.ToString(); message.Body = Comments.Text.ToString(); SmtpClient client = new SmtpClient(); client.Host = "203.92.50.112"; client.Send(message); } // this is what i used to send the email … | |
I have a website made in asp.net and I'm attaching a blog from blogengine.net. I already have a domain name and I'm looking for a host which has email and "pointing". I have never bought a hosting plan before and I was wondering if you guys had any tips on … | |
[b]Split from - [url]http://www.daniweb.com/forums/thread256110.html[/url] [/b] Hi, I'm running into what sounds like the same (or very similar) problem. Did you ever find the solution? Thanks. (and if you're still looking I'll come back here with anything I find) | |
Hi all, Currently working on Visual Studio trying to create a login system for my website. Tried following various tutorials but can't seem to get them to work. Are the pre-defined login tools on Visual Studio good enough? I've got part way there using them but can't piece it all … | |
sir i want to get first 10 links of google search page by c# how can i copy top 10 URL of google search in text file using c# | |
I am using Below SQL commands at Crystal Report as command [CODE]SELECT count(id) FROM Content WHERE CONVERT(varchar(10),ImportDate,101) between '{?Para1}' and '{?Para2}'[/CODE] but its generate message value as '0',But When I run in sql server it give result as 23454.Please Help me Sort this problem Thanks Tank50 | |
Hi! I want to Upload and Attach my SQL server 2005 database and my Asp .net site to server please help me. and my connectionstring setting is in web.config tank you. | |
[b]Split from - [url]http://www.daniweb.com/forums/thread172760.html[/url] [/b] we want the steps to create website. Okay thank you. | |
Dear Friends, I have created a Website in ASP .Net, in which i have use MySQL as database, its just a Contact information and telephone directory database of my friends... Its working Perfect on my Computer, but now i want to put it on the WEB. So please tell me … | |
Hey I was wondering how is the easiest way to send a email thru VB .NET 2005. I want to send a email every 5 minutes a certain text (that I have no problem the only problem is how to send the email with the address, server address, user name, … | |
i hv created 3 tables category,author and publisher...n i hve added category,author,publisher items in dropdownlist...n i hv taken lsit box...in which when i select item from dropdownlist i should get the list of items in that particular selected item from dropdownlist..eg...if i select category from dropdownlist i should get the … | |
I have a program that I'm working on where the initial form shows up, asks for input, then when you click 'begin' it starts processing. Then I Hide() that form. Later in the program, there's a CAPTCHA that needs to be entered. I have set a second panel in the … | |
I'm trying to get CPU usage with PerformanceCounter but getting the following error. Server Error in '/' Application. Access to the registry key 'Global' is denied. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error … | |
Hello ALL, I am using wizard control in my project. First i am asking the user , how many question should display per page by dropdown list having option like 1,5,10. For this i have to generate the dynamic steps , which are having 1 question per page , if … | |
hello when i open my website it shows [B][url]www.mywebsite.com/index.html[/url][/B] but i want to open like [B][url]www.mywebsite.com[/url][/B] do not want index.html with the url. please give me the solution how to do it. | |
Hello, In the tread [url]http://www.daniweb.com/forums/thread122708.html[/url] there is shown how to do this check in .net 3.0 framework. Is there a possibility to do the same in .net 2.0? Thanks for your reply | |
Hi Sir, Where do I post my queries on Crystal report. I'm confused where do I post. So Im posting my query into this forum. Now my problem is when Im posting the build on LOCAL server the Crystal reports are working fine. But when Im posting it on the … | |
i got an exception when i run my site....it is usually happens at client side when more than 2 user accesing at the same time. i guess i hav'nt handle this exception properly but have no idea why this error is coming again n again. The Exception is "sys.webforms.pagerequestmanagerservererrorexception 503" … | |
dear all .. **default.aspx** <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <br /> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <cc1:AutoCompleteExtender ID="TextBox1_AutoCompleteExtender" runat="server" DelimiterCharacters="1" … | |
I have nested asp repeaters [CODE] <asp:repeater id="ParentRepeater" runat="server" OnItemDataBound="repMenu1_ItemDataBound"> <itemtemplate> <table> <tr> <td> <asp:CheckBox id="CheckBox1" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"DESCRIPTION") %>' OnCheckedChanged="chkBox_CheckedChanged" > </asp:CheckBox> </td> </tr> <tr> <td> <!-- start child repeater --> <asp:repeater id="childRepeater" runat="server"> <itemtemplate> <TABLE id="Table1" border="0" cellSpacing="0" cellPadding="0" width="1000"> <TR> <TD><%# DataBinder.Eval(Container.DataItem,"Trx") %></TD> <TD><%# DataBinder.Eval(Container.DataItem,"GL") %></TD> <TD><%# … | |
HI, I want to have a functionality to send Fax the document from my website developed in asp.net and i also need to have different header and footer for the Fax document. | |
Hi I have a web page where i need to use some javascript. If i write all the javascripts and jQuery javascripts in the aspx page it works perfect. But when i write all the javascripts in separate file called scripts.js and include scripts.js in the aspx page it doesn't … | |
hello sir..... suppose i want to display list of item name at specific portion on webpage(.aspx page) but coding portion is done in aspx.cs file with use of for loop i get Item name into variable from database. now i want to use that varibale to dispaly Item name at … | |
Hi, I am working on a project where i need to store data in App_Data, any one can help me to tell how can i do it. |
The End.