Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MayoorPatel
  • Content: Threads
  • Order by date
  1. MayoorPatel

    Passing Value from DIV TAB id to dropdown Onchange Event

    Hi there I have a dropdown <select name="OrganisationID" size="1" class="text300" onChange="javascript:document.forms[0].submit();"> and a set of div tabs. <td id="cardActivitySchemeTab" class="selectedTab"...
  2. MayoorPatel

    Appending A Value to the Querystring

    Hi there I would like to append a value to the submit action, depending on which DIV tab is clicked. Here are the DIV tabs <tr class="tab"> <td id="cardActivitySchemeTab" class="selectedTab" onclick="moveTabSectorSkillsReports(this.id, 'cardActivityScheme');">Card Activity by...
  3. MayoorPatel

    DIV Tabs not remembering state apon refresh

    I have a tabbed menu, to demostrate this correctly I have created a test account on our website http://demo.myskillsrecord.co.uk/sectorskills/login.asp ID : 8863 username : test password : test Click on sector skills reports and you can see a tabbed menu. The problem is when I go to the third...
  4. MayoorPatel

    Converting getdate to Varchar

    Hi there I'm trying to assign a default value to the parameter @EndDate but I keep getting this error when I execute the procedure and pass no parameter to the @endate Msg 241, Level 16, State 1, Procedure p_GetAllCardsIssuedByOrganisation, Line 0 Conversion failed when converting datetime from...
  5. MayoorPatel

    Search Query Help

    Hi there I have several fields on which a user can search on. I have set up my webform as you can see from this screenshot. http://www.mayoor.co.uk/screenshot.jpg I would like to write a SQL query where by if anyone types any combination of entries into the fields the query will retun all...
  6. MayoorPatel

    I'm getting a blank option in my dropdownlist

    Hi there I have a javascript array which is populated by the database <script language="Javascript" type="text/javascript"> <!-- var subTextArray = new Array(); var subValueArray = new Array(); subTextArray[4] = new Array(); subValueArray[4] = new Array(); subTextArray[4][1] = "4.1...
  7. MayoorPatel

    Dillemma regarding Distinct and Join

    Hi there I have a query which is used to search a database for judgements. Each judgements can have many Categories and each category can have many subcategories. select j.id, sc.[description] as subcategory, sc.[id] as subcatid, c.[description] as category, c.num as catid, j.file_no_1 + '...
  8. MayoorPatel

    Looping through Multiple Dropdowns with different ID's but same elemen

    Hi there I have a category and subcategory dropdown on my form as follows http://www.mayoor.co.uk/cat1.jpg However I want to have another 4 of these with different ID's. The code used to set the selected item is as follows If Not ds.Tables(2).Rows.Count = 0 Then...
  9. MayoorPatel

    Problems with Multi Select Listbox

    I have a multi select listbox on a form which posts to the server and then returns to the form prepoulated with the items it just posted. I have the following code to populate the dropdown (subcategory) but for some reason it only highlights the first row, when actually ive selected 4 or 5...
  10. MayoorPatel

    Populating a Multi Select Listbox from the Request Object.

    Hi there I have a form using VB.NET which submits data to the database and then posts back to itself and populates the dropdowns with the values I have just added to the database. I have a multi select dropdown called "drpCategory" which needs to populate the selected items from the request...
  11. MayoorPatel

    My Data Grid doesnt call the correct procedure on Delete.

    Hi there I have a datagrid <trans:groupedgrid id="DecisionGrid" runat="server" EnableViewState="False" AutoGenerateColumns="False" AllowCustomSorting="True" CssClass="search-results-table percent80" AllowRowHighlighting="True" RemoveRedundantBorders="False" ReorganiseItemStyles="True"...
  12. MayoorPatel

    The text, ntext, or image data type cannot be selected as DISTINCT.

    Hi there this is the error im getting. when i try to run my asp.net application. Stack Trace: [SqlException: The text, ntext, or image data type cannot be selected as DISTINCT.] System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean...
  13. MayoorPatel

    SQL Server Passwords

    Hi there. Can anyone tell me which characters are invalid for SQL server passwords? for instance is @a3r5#; allowed? Mayoor
  14. MayoorPatel

    Dependancy Renaming Tool

    Hi there I want to rename a Table and the columns inside it too. The problem with this is that there are countless stored procs that refernce this table and within those stored procs, columns which reference that table. I'm looking for a tool that will allow me to rename the table and columns...
  15. MayoorPatel

    Object reference not set to an instance of an object.

    Hi there guys I am getting the follwing error when I run my page. System.NullReferenceException: Object reference not set to an instance of an object. at DCA.TribunalsService.Lands.Web.Search.Page_Load(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at...
  16. MayoorPatel

    Auto Closing an Alert Window

    Hi there I have this script running against several websites, but one website has this annoying alert window that pops up and stops me from running the script any futher unless I click ok. Now I have to leave this script running all day. Is there anyway that when then Alert pop up with the...

Part and Inventory Search

Back
Top