- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
39 Posted Topics
Re: [QUOTE=saiphyn;1190332]Hi, I'm looking for a way to get a single data value from a table by an SQL statement and store it in a variable (i'm using C#). example: table: customers(customer_ID, name, age) string variable = SELECT name FROM customers where customer_ID = 25 It's probably not that hard, but … | |
Hi friends, I need to create ruler like border for crystal report. Can any one help me? I have attached the screen shot for your reference. Thanks in Advance, Murugavel.B | |
Re: The below link will guide u clearly. U can get the steps involved in formsauthentication. [url]http://msdn.microsoft.com/en-us/library/ff647070.aspx[/url] | |
Re: Could u pls put ur code here? I will help u. | |
Re: The below one will guide u clearly. [url]http://msdn.microsoft.com/en-us/library/ms972974.aspx[/url] | |
Is there anyway to close the firefox using javascript without changing the about:config file? | |
Hi Buddies, Can anybody give me the sample to do sql connection through windows authentication through asp.net? I was tried lot of ways. but it throughs empty value for the username and access denied. Please help me to solve this issue. | |
Re: hey, Just put "nowrap" in each template column. | |
Re: [QUOTE=tashiDuks;1202676]Hello Everyone, I have designing a desktop application using VB.NET 2008 & SQL Server 2005. In my Application i have a frmUserRegistration to add a user & frmLogin to login to my application. i can add the user details in the database but my password seems to be in characters. … | |
Hi friends, I need to know how can we achieve this? Once the user navigate from a page,the cache should be clear and if they press browser back button, it should display the "page has expired" error message. Can anybody help me on this? | |
Re: The below links will guide u [url]http://www.aspspider.com/tutorials/[/url] [url]http://www.w3schools.com/aspnet/default.asp[/url] | |
Re: Just use web service and javascript. See this it will hep u. [url]http://msdn.microsoft.com/en-us/magazine/cc163499.aspx[/url] | |
Re: 1)Hi dont use button2. Just use it as amethod and habing parameters. 2)In Button1_click event u did major mistake. Executenonquery should use only to insert, update and delete operations. 3) For select query u have to use reader or dataadapter to get the datas. 4) here i would suggest u … | |
Re: Hey just remove the parameters. just use [CODE]sub DrawScreen[/CODE]. It will work | |
Hi Friends, I have a user control. what I wanted to do is to find the panel from its parent page. My code is below [ICODE]Dim pnl As Panel = Me.Parent.FindControl("Panel1")[/ICODE] But it returns Nothing. Help me asap. | |
Re: [QUOTE=Tank50;1216420]Hi I create web site using asp.net,It publish in windows server 2003.when I type URL in internet explore its sows all the aspnet file(.aspx) file,after that I click on default.aspx file,but it wont works,its generate "page cannot found".I tried it in my local machine and server machine,but its that didn't … | |
Re: [QUOTE=MARKAND911;1217550]But what to do if I am redirecting my page on Button_click() event. How can i write this <a href> code in a button click event.[/QUOTE] Hey very simple, [ICODE] function openwindow(pagename) { window.open(pagename,"MyWindow"); } [/ICODE] call this javascript on your button "onClientClick" event. Pass the page url as argument | |
Re: [QUOTE=dnanetwork;1216725]you want google to show search results in your site...?[/QUOTE] simple... [CODE]Response.Redirect("www.gooogle.com")[/CODE] | |
Re: [QUOTE=Tank50;1212242]Hi I am using C# to connect to mysql database that install in my local machine.After I complete the project I want to publish it in another server.So I change the mysql connection string.Here I mention the connection string that I used in local machine String MyConString = "SERVER=localhost;"+"DATABASE=IPG;"+"UID=root;"+"PASSWORD=Test;"; Before … | |
Re: [QUOTE=a_jadon;1195699]Hello there, I am in need of major help. I am trying to convert my ASP classic website to ASP.net. Now my problem is with reading and controlling of the data found in my SQL Server DB. I have managed to connecting to the database and read the records there … | |
Re: [QUOTE=mohsinsayyad;1196250]I am Developing Windows Form Application in .Net, I want to insert selected rows value of Gridview into database. First Column of my GridView is Checkbox, when user check one or more checkbox from gridview, i want to insert values of respective rows into Database.[/QUOTE] Try to use this foreach … | |
Re: [QUOTE=ragavasathish;1209113]how do wrote coding the login control[/QUOTE] See this, it will help u. [url]http://www.dotnetfunda.com/tutorials/controls/login.aspx[/url] | |
Re: [QUOTE=smandeh;1210443]A user is sending me a data value in a web browser -see below for example. I would like to get this value and use it downstream. I try using [COLOR="Red"]string val = Request.QueryString[X_ACCOUNTID][/COLOR] but it did not work. Any idea on how I can retrieve the value in my … | |
Re: [QUOTE=krunalkakadia;1212263]hello you all, thanks you all for solving my problems and helping and guiding me. i have news titles with hyperlink in one page when i click on one of the news title then it will navigate to other page and will display news title and content there. now i … | |
Hi friends, I am facing this problem while adding a panel to another panel. Please give me the solution. I have put my code below. [CODE] Dim pan As Panel = DirectCast(UserControlTest1.FindControl("Pan_ItemBind"), Panel) pan.Controls.Add(Panel1)[/CODE] Thanks in advence... | |
Re: [QUOTE=rohand;1201340]Thanks for your answer...But no i can't use the extra button, it';s the requirement that once file get download by user, he/she will redirect to another page.[/QUOTE] Try some other way of downloading. Because Response.End(0 will stop the page script. | |
Re: [QUOTE=inAweofOOP;1201598]Hi all, I am getting this [I]UnauthorisedAccess Exception[/I] when I try to delete a file using the File.Delete() method...I hav permitted full control to NETWORK SERVICES, IUSR_(user name) and ASP.NET Machine Account on the folder that contains the file to be deleted..i'm stumped..i even tried impersonating user (administrator) in the … | |
Re: 1. Use the below code [CODE] --conection to SQL Server is opened myadaptor.SelectCommand = New SqlCommand myadaptor.SelectCommand.Connection = myconection myadaptor.SelectCommand.CommandText = “--- select ..... where code = .... ---” myadaptor.SelectCommand.CommandType = CommandType.Text myadaptor.Fill(mydataset, "salesdb") If mydataset.Tables(0).Rows.Count > 0 Then grdlocation.DataSource = mydataset grdlocation.DataMember = "salesdb" Else Label1.Text = "No Records … | |
Re: [QUOTE=tashiDuks;1193939]HI Everyone, I have a form with datagrid. When i click the rows of data grid i can fill all the values in form controls except checkbox. My check box checked state seems to be not changing when i click on rows of the datagrid. I have a column in … | |
Re: [QUOTE=ndhamecha;1196280]hi would you please help me in retrieving values related to user select a country then its automatically shows the states name of that country in next dropdownlist and after that it will automatically display the city names respected to that country.. please do the needful.its really very urgent thank … | |
Re: [QUOTE=00 freedom;1197370]hi all, i would like to ask if do you know how to Embed the Remote Desktop ActiveX Control in a Web Page using C#? any help would be greatly appreciated!! thanks![/QUOTE] Hi try this... [url]http://www.c-sharpcorner.com/uploadfile/thiagu304/remotedesktop10262009033113am/remotedesktop.aspx[/url] This will give u the brief explanation. | |
Re: > Hi All, > > Hi All, I'm in a bit of a pickle here. I'm Binding the name of file to a LinkButton and intending to open that file on the LinkButton' click. I have the LinkButton in the TemplateField of a GridView control. Below is the code I'm … | |
Re: [QUOTE=edgias;1192627]I have a search form which the user has to enter values to search for a particular vehicle in the database. I want to assign a certain value in the database to a certain control on another page. how will I be able to do this? I have something like … | |
Re: [QUOTE=rohitmanhas_12;1193373]Hi, I need help for this problem that i'm trying to solve for a while (i'm Using ASP.net and C#). How do i submit the values from selected checkbox lists into database using c#.... Here's the code: .......................................................................... [code] <asp:CheckBoxList ID="CheckBoxList1" runat="server" Font-Bold="False" Font-Names="Vrinda" Width="338px" style="text-align: left"> <asp:ListItem>Public Tap</asp:ListItem> <asp:ListItem>Well … | |
Re: [QUOTE=gudisiva;1195434]how to generate the mail id's in database,please help me....[/QUOTE] Whats the exact need? can u please explain? | |
Re: i need exam for Dataset copy. if you find the result. reply me.. DataSet ds1=//somedata//; DataSet ds2=ds1.Copy(); The main difference between DataSet copy and clone is: Clone - Copy the structure only Copy - Copy the Structure and data | |
Is it possible to sort the paginated gridview for particular page? | |
Re: Yes, u hav to put the pathresolver.cs to App_Code... |
The End.