Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
86% Quality Score
Upvotes Received
15
Posts with Upvotes
14
Upvoting Members
13
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
4 Commented Posts
11 Endorsements
Ranked #153
Ranked #630
~63.8K People Reached
Favorite Tags
Member Avatar for hirenpatel53

hi all iam working as software developer i wish to create my blog website using asp.net and C# so any one have idea so please help me in this Please thak you in advance

Member Avatar for shahid.tariq
1
3K
Member Avatar for fheppell

I'v got this code to make a bootstrap navbar <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="brand" id="logo" href="#">picturecamel</a> <ul class="nav pull-left"> <li><a href="/">Home</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Account <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="change-password">Change password</a></li> <li><a href="update-email-address">Change Email</a></li> </ul> </li> <li><a href="logout">Logout</a></li> <li><a href="help">Help</a></li> </ul> </div> </div> …

Member Avatar for HAOND
0
4K
Member Avatar for gahhon

In JS i tried something like this, window.onbeforeunload = function() { window.open('http://www.msn.com','_self'); return 'close?'; } but it doesn't redirect the page, but the return statement is displayed. how can i do to archieve redirect a specify page without any alert?

Member Avatar for sunil_17
0
2K
Member Avatar for newbie26

hi. how can i disable past days in ajax calendar extender? user must only select one month period from the current date. so if today is march 10, 2015 when user clicks the calendar, the enabled dates should only be from feb 10 to current date. please help. thanks..

Member Avatar for BMXDad
0
80
Member Avatar for coder91

I'm creating a menu based on the user using the following code System.Text.StringBuilder sb = new StringBuilder(); sb.AppendLine("<ul>"); if (!Page.IsPostBack) { foreach (DataRow row in datatable.Rows) { sb.AppendLine(String.Format("<li><a href= x.aspx?Name={0}&Short={1}&Long={2}></a></li>", HttpUtility.UrlEncode(row["x_name"].ToString()), HttpUtility.UrlEncode(row["x_short_name"].ToString()), HttpUtility.UrlEncode(row["x_long_name"].ToString()), row["x_short_name"].ToString())); When the user selects an item from the menu the page is loaded using a querystring. …

Member Avatar for BMXDad
0
641
Member Avatar for djblois

My company is using Legacy ASP with VB script. The code I am testing to try and count the rows in a stored procedure is as follows: If Not isNull(dblOrderMasterID) then Set cmdAttachCount = Server.CreateObject("ADODB.Command") cmdAttachCount.ActiveConnection = cnn 'cmdAttachCount.CommandText = "SP_OrderGetAttchID" 'cmdAttachCount.CommandType = adCmdStoredProc 'prm.Append cmdAttachCount.CreateParameter("@u_order_master_id", adNumeric, adParamInput,,dblOrderMasterID) 'Set rstAttchCount …

Member Avatar for SteveDotNet
0
615
Member Avatar for opelio4n
Member Avatar for lefteris.gkinis

I have the following code in my web page <div class="RegFieldsCountry"> <ajaxToolkit:ComboBox ID="Country" runat="server" CssClass="RegComboEntry" TabIndex="8" Width="180" ValidationGroup="SetUserValGroup" AppendDataBoundItems="true" DropDownStyle="DropDown" ToolTip="Country Selection" BackColor="#C0C0C0" ValidateRequestMode="Enabled" EnableViewState="true" ListItemHoverCssClass="CountryHoverListItem"/> <asp:RequiredFieldValidator ID="RequiredRegComboValidator" runat="server" ControlToValidate="Country" ErrorMessage="Η επιλογή χώρας επιβάλλεται." ToolTip="Η επιλογή χώρας επιβάλλεται." ForeColor="red" ValidationGroup="SetUserValGroup" CssClass="RequiredValidator"/> </div> What I get from that is a ComboBox …

Member Avatar for BMXDad
0
495
Member Avatar for Blueie

Hello I would be grateful for some assistance getting the date to appear on my page, please. This is the code in my aspx.vb file: Dim Label As Object Function ReturnDate() As String Dim theDate As String = "" Dim NumericDayofMonth As Integer = Date.Now.Day Dim OrdinalSuffix As String = …

Member Avatar for JorgeM
0
171
Member Avatar for Violet_82

Hi all, I was just wondering, how do I go about making an asp.net application accessible on the internet? The application is also linked to a SQL database (created in visual studio). I have got server space available but I'm not sure where the sql database needs to be copied …

Member Avatar for JorgeM
0
676
Member Avatar for Blueie

Hello In my success.aspx file, I have: <asp:Label ID="LblDate" runat="server" class="labelStyle" Text="Label"></asp:Label> and <div class="center"> <asp:Label ID="Name" runat="server"></asp:Label> you have successfully registered </div> and in my success.aspx.vb file, I have: Code for the date, which works, and then: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load …

Member Avatar for BMXDad
0
194
Member Avatar for Violet_82

Hello guys, since I have now effectively completed my first asp.net application (it's a very basic application where people...ahem, where I can record overtime) I was wondering what the best way is to add some validation. The page which allows you to upload the details needed (date, hours worked and …

Member Avatar for Violet_82
0
233
Member Avatar for Violet_82

Hi guys, as I'm fairly new to visual studio and asp.net, I might be missing something really obvious here...basically I have created a CSS file which is referenced in the aspx file (I dragged the css file from the project to my aspx file). Then I created another aspx file …

Member Avatar for BMXDad
0
323
Member Avatar for shehzad.ali.399

how can I make a telephonic conversation in my website using asp.net with c#...

Member Avatar for BMXDad
0
87
Member Avatar for sana.f.qureshi_1

Hey good people, I hope you are all well. Ok so here is the scenario, i have 4 tables that i have made in sql server 2008. I am using a drop down menu to diplay their names. Like this... ![ecb53783b16f2f19f927a3cd72bee4d0](/attachments/large/4/ecb53783b16f2f19f927a3cd72bee4d0.png "ecb53783b16f2f19f927a3cd72bee4d0") I am going to use a dataGrid view. …

Member Avatar for BMXDad
0
285
Member Avatar for Gary_4

Hi all. Relative newby to DW CC, looking at my site its fine localy, however cant view on www after upload to server? I, can see the dat files as data on host just dosnt want to display???? Please Help PS I may have currupted the folder layout but cant …

Member Avatar for BMXDad
0
124
Member Avatar for <M/>

I seem to not be able to identify why the styling does not appear at all on my page... Did i reference something incorrectly? It all appears right to me... syntax, quotes, tags all look right. Does anyone have an idea what may be happening? Sorry if my question is …

Member Avatar for shashikumar s g
1
697
Member Avatar for adrian.mcguinness

I have a connection in a DAL to SQL server. Using this connection I am trying to read the query. I have tried using ExecuteReader() and ExecutreNonQuery() with no luck. Here is my code: private void button1_Click(object sender, EventArgs e) { try{ var cn = new Connection_Handler(); string input = …

Member Avatar for adrian.mcguinness
0
273
Member Avatar for SID5721
Member Avatar for diafol
0
779
Member Avatar for iConqueror

I have been learning about collections such as arrays and arraylists and lists and have come across the term "interface" a fair bit. I know that an IList is an "interface" but I dont understand what an interface is or does. 1. What is an interface in C#? 2. How …

Member Avatar for BMXDad
0
202
Member Avatar for davecoventry

I have two items that I need to be displayed in the centre of the page. <span class="center"> <div class="ring">1</div><div class="question">Question</div> </span> The CSS is as follows: .ring{ height: 58px; width: 58px; font-size: 24pt; font-weight: bold; vertical-align: middle; background-image: url("images/ring.png"); } .question{ font-size: 24pt; } .center{ margin-left: auto; margin-right: auto; …

Member Avatar for diafol
0
195
Member Avatar for momal

I'm creating a contact us page for my website, I need all the contact queries to info@mycompany.com. I know how to configure for a gmail server but how do I do it for this?

Member Avatar for momal
0
258
Member Avatar for marvil

Hi guys, I'm new to ASP.Net. I'm building a page which consists of a dropdownlist, a gridview and a save button below the gridview. I want to populate the gridview based on the values selected from the dropdownlist. My first problem is that the gridview does not display when the …

Member Avatar for BMXDad
0
380
Member Avatar for diya45

i try to show documents with specific department id computer-science admin will be able to view only computer-science documents and hr admin view only hr documents here i create a sp ALTER procedure [dbo].[sphrdocid1] @DepID int as SELECT DocumentInfo.DocID, dbo.DocumentInfo.DocName, dbo.DocumentInfo.Uploadfile, dbo.DocType.DocType, dbo.Department.DepType , dbo.ApproveType.ApproveType AS ApproveID FROM dbo.DocumentInfo left …

Member Avatar for BMXDad
0
438
Member Avatar for 21345570

Hi there, I wanted to know if there was a way you could enable a part of my site at a point in time and disable it after that time has past, is there anyway to code for that. For example I'm doing a project on online voting and I …

Member Avatar for BMXDad
0
105
Member Avatar for GagaCode

hey all once again i have a little issue ... i'am really having a hard time with this issue i have a datagridview that contain one column as a text and another column as a combobox i would like to populate the combobox from MS Access Table and as a …

Member Avatar for GagaCode
0
293
Member Avatar for YA RAMSAMKER

What matters when creating a website ? you as a user what attracts you to visit a website ?

Member Avatar for BMXDad
0
139
Member Avatar for diya45

I HAVE A SCANERI THAT THER IS DEFAULT ADMIN IN TABLE AND THIS ADMIN ADD FURHTER SUPERVIOSR,MANAGERS AND SENIOR MANAGERS THEN WHEN ADMIN FIRST TIME LOGIN AND CREATE ACCOUNTS OF SUPERVISOR,MANAGER,DIRECTOR AND HERE IS THE TABLE UserID UserName Password UserTypeID DepID FullName CreateDate DocID Email PhoneNumber DesigID 51 Noreen Fatima …

Member Avatar for vsmash
0
132
Member Avatar for kavitha N

Hi All, Need a help on ASP.NET gridview. I need a link gridview in asp.net and when you click on particular link that details has to show in the same page. I am using Oracle database. Thanks in advance. Kavitha Kesav

Member Avatar for kavitha N
0
112
Member Avatar for HunainHafeez

i am using a store procedure to access field in asp.net View, i am putting db columns in HTML table, it's workign except for one field, 'NetSalary'. It can't be accessed, it says that model doesn't contain it. i tried many ways but couldn't get to work. ALTER PROCEDURE [dbo].[GetMonthlyReport] …

Member Avatar for BMXDad
0
223