13,153 Topics
| |
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 |
The End.