Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
83% Quality Score
Upvotes Received
6
Posts with Upvotes
6
Upvoting Members
4
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
3 Commented Posts
0 Endorsements
Ranked #914
~16.6K People Reached
Favorite Tags
Member Avatar for nezammca

hi.,:cool: I need to create a grid view in asp.net which should have the database connectivity nor sqldatasource. hence i should use the dataset,datatable,datarow and some how i tried and create the dataset and displayed in grid view. i wrote this code in page load event: dataset ds = new …

Member Avatar for shubham.raval.5496
0
1K
Member Avatar for jellybeannn

Can someone please help me with why this button is not working, I've tried putting it in <for id="" runat="server">, but then I get the error: A page can have only one server-side Form tag. When the button is clicked nothing happens. [code] <%@ Page Language="C#" MasterPageFile="~/train.master" AutoEventWireup="true" validateRequest="false" CodeFile="TrainStationTutorial.aspx.cs" …

Member Avatar for Hamza Bukhari
0
2K
Member Avatar for lara.rachel.7

Hiii everyone, I am software analyst, and love to share and gain new advanced technologies aroud the IT area!! I hope i will learn more from here!

Member Avatar for extr3mex
0
63
Member Avatar for eesha.ebaad

my images are stored on server in folder "Albums".To access images the path is "/Albums/". I have tried this code but its not working.boxes for images appear on page load but after that immediately disappear. <asp:ListView runat="server" ID="listView"> <ItemTemplate> <asp:Image ID="img" ImageUrl= '<%# "/" + Eval("PictureLink")%>' width ="44" height ="45" …

Member Avatar for prashantchalise
0
108
Member Avatar for fawadkhalil

Hi all I m using asp.net 4.0. In my data list i have used asp image tag like below [CODE] <asp:Image ID="imgSmallPics" runat ="server" ImageUrl ='~/AdsPictures/<%#Eval("pictureName")%>' [/CODE] where AdsPictures is folder where images resides and pictureName is name of image return by query. Image is not shown, when i copy …

Member Avatar for eesha.ebaad
0
2K
Member Avatar for markdean.expres

Does anyone know how to handle errors? I want that, when errors happen such as the errors in datagrid, invalidcastexceptions or others, there should be some pop ups to show instead of the JIT dialog box. Please help me with this, this is the last part of my program (the …

Member Avatar for markdean.expres
0
107
Member Avatar for swathys

hi, i would like to create an uniqueID where it must add +1 behind the CurrentTranxDateTime for the transaction 1 to 10....I have coded as below but the problem is the number doesnt +1 for each transaction.....any1 have idea to solve this..... eg: 300111 01:45:29 AM 1 300111 01:45:29 AM …

Member Avatar for swathys
0
247
Member Avatar for YMCMb

Hi everyone, Here i am once again, I have a business logic layer, which will be called upon by aspx page, The BLL has a SQL statement which add's records on to the database, which works fine, however i would like to make sure the record that is being added …

Member Avatar for YMCMb
0
289
Member Avatar for mldardy

I need help on a section of the code below to revise so instead of redirect to a full page I want it to redirect and open as a popup window. How can i change the code I have to make this possible. [CODE]void context_AcessDenied(object sender, EventArgs e) { try …

Member Avatar for abelLazm
0
3K
Member Avatar for Mishalkk09

Hi, I am working with asp.net and in my web user control i have several buttons and textboxes. FirstBtn cliked---->FirstTextBox ----->displays: "Hi" secondBtn clicked--->SecondTextBox ------>displays:"Hello" Now again if i click the firstbtn then the FirstTextBox would be empty.Can anyone tell me how can i sane the last entered value? Regards, …

Member Avatar for prashantchalise
0
292
Member Avatar for khan43

I am using visual studios 2008 combined with ASP.NET prog language. On my master page I have a div in the center of the page, which is called #nav in the css page. This div is a square box, althou I would like to curve the angels of the div …

Member Avatar for khan43
0
126
Member Avatar for Mike Bishop

i am trying to write a SP that will return a value in vb.net here is my SP CREATE PROCEDURE ClaimTotal @Ctotal BIGINT output AS select SUM(total) from claim where @ctotal = total I want to SUM my total coloum from my table claim, and store this in a varible …

Member Avatar for prashantchalise
0
152
Member Avatar for Sarama2030

i'm working on this project in asp.net in conjunction with vb.net.the thing is code behind is just not getting fired, well it used to but then it stopped. I'm using visual studio 2010 ultimate edition as my editor and of course IIS as my web server. I really don't get …

Member Avatar for Sarama2030
0
180
Member Avatar for eileenc87

Dear All, The problem I'm facing now is when I set my DateTimePicker format yyyy-MM-dd, when I put a date in that column, they will auto generate the time now. For example, i entered 2011-03-30 but they will save in database 2011-03-30 10:56:54 AM. Question here is: How can I …

Member Avatar for eileenc87
0
87
Member Avatar for leahrose87

I have so many form in different module in one solution. I already instantiate a new Form as a global variables in my parent form. Then, call the code [CODE] frm.show() [/CODE] in my button1 event any idea?

Member Avatar for leahrose87
0
92
Member Avatar for ragnarok511

Hi everyone, I am working on a form and I am trying to add buttons back and submit when I go to another page, but I keep getting the error "Collection was modified; enumeration operation may not execute." whenever it tries to create the buttons and add them. I am …

Member Avatar for prashantchalise
0
129
Member Avatar for jpallavi
Member Avatar for prashantchalise
0
59
Member Avatar for pritesh2010

hello everyone. can any one tell me how to delete recored from gired view dynamically. in my program i have one gridview and sqlDatasource in this i have 4 label and one button.Label shows name, date, title and description and button for delete. all this is done at source view …

Member Avatar for prashantchalise
0
110
Member Avatar for laptop545

hello all, Can any please help me in this : I have a form , in a website which has : year : text box Photo : type ="file" Submit button. Now, if any user enters the year, and uses the browse button to select any photo, and then clicks …

Member Avatar for prashantchalise
0
97
Member Avatar for Weppies

Hi I need to know how to keep data in a gridview after postback. I am using sqlDataAdapter with DataSet to fill the gridview. But if you want to go to the second page of the gridview list it loses the data. Would it be best to create a Session …

Member Avatar for Weppies
0
357
Member Avatar for jellybeannn

I got this code off a site, with a really nice layout and style, I've never worked with input field, so I'm stuck how can I save this to a database. I tried changing everything to a <asp:Label> and <asp:TextBox> but then I do not get the same layout. [code] …

Member Avatar for jellybeannn
-1
2K
Member Avatar for Abdul Rouf

Hi All Experts, Actually I am VB.Net Windows Application Developer Now i am going an ASP.Net Application. So, the Problem is that in Windows Application i Code this Project like given Below Actually i am Using SQL Server as DataBase and Store Procedure as Query. Becuase i had tried to …

Member Avatar for prashantchalise
0
220
Member Avatar for hirenpatel53

hello all i have one master page containing menu strip and one content page of same master page what i want while i click on the menu strip the value clicked is shown to to text box on form for that i am using following code master page's code [CODE] …

Member Avatar for hirenpatel53
0
122
Member Avatar for kalit

Hi, We upgraded from 4.6.2 to 4.9 recently. All is working well, it seems, except for the login / authentication module. When attempting to login, no username/password box appears and instead we are greeted with a module load warning: Module Load Warning One or more of the modules on this …

Member Avatar for prashantchalise
0
87
Member Avatar for bbman

hi... i want to hide a column in gridview..but must be able to access the data from that column.. whenever i make the column visibility to false..i wont be able to access the data.. it works..only when the condition is true. I tried the below method also.. GridView1.Columns.Item(0).ItemStyle.Width = 0 …

Member Avatar for prashantchalise
0
2K
Member Avatar for lm111

Hi, I need help binding the DataTable to the GridView. Let's say I have this code [code] string filter = String.Format("title LIKE '{0}'", str); DataRow[] rows = dt.Select(filter, "title"); Gridview1.DataSource = ?; Gridview1.DataBind(); [/code] I need to display only the filtered items in the GridView. What do I assign to …

Member Avatar for lm111
0
114
Member Avatar for ykel

Hello all, I have for two days now been trying to debug what appears to be a serious logical error in my code, now I think I need to make it public. I am working on a dynamically loaded user control, this usercontrol has two dropdownlists, followed by textboxes.The second …

Member Avatar for ykel
0
167
Member Avatar for Uzumaki52

Hi, I have table in Database and i need to get the get the values of column and check for the values. If the value in row of that column is null...the imagebutton in grid view should be disabled. I am unable to get the rows values. Can anyone help?? …

Member Avatar for prashantchalise
0
70
Member Avatar for deeptakshd

i m having a webpage which is having a gridview which is displaying data from database........now on the same same web page their exists some hyperlinks namely A, B ,C.....upto Z ............can anybody plz help me out on how to display the new data (clicking of hyperlink A result in …

Member Avatar for prashantchalise
0
280