Search

You searched for the word(s): userid:879068

Matching Posts

  • Problems with a temporal table (creation and elimination) from myWebSite

    Hi! I have problems with the creation of a temporal table from my website (vb.net) through a stored procedure The stored procedure is [CODE] create procedure mi_SP ... as if @ Tipoconsulta = 1 begin if exist (select name from tempdb.sys.objects where name = '#temp') begin drop table #temp end create table #temp (id int ,...) end ... [/ CODE] When I run the website(and I press the respective button) the temporal table doesn't create only it creates the temporal table called "dbo.
  • Re: Problems with textbox and onKeyPress(javascript: return false;)

    Thanks! onkeyDown works! but I found other strange behavior... my new textbox is [CODE] <asp:TextBox ID="mytxt1" runat="server" onCopy = "javascript: return false;" onCut = "javascript: return false;" onPaste = "javascript: return false;" onKeyDown = "javascript: return false;"></asp:TextBox> [/CODE] When I copy the text of "mytxt1" and then paste it to another textbox ("mytxt2") the text shown in "mytxt2"
    Posted to Web Forms (Forum) by ClaCS on 9/21/2009
  • Problems with textbox and onKeyPress(javascript: return false;)

    Hi! I have a strange problem with onKeyPress textbox's property (or event?) The following code... <asp:TextBox ID="mytxt" runat="server" onCopy = "javascript: return false;" onCut = "javascript: return false;" onPaste = "javascript: return false;" onKeyPress = "javascript: return false;"></asp:TextBox> ...works fine because I want to the textbox be "readonly". I don't set the readonly textbox's property
    Posted to Web Forms (Forum) by ClaCS on 9/18/2009
  • Problems with Gridview's pagination and a DataTable

    Hi! How Can I obtain an automatic pagination in a Gridview with a DataTable (like a ObjectDatasource)? When I bind a ObjectDataSource (in the design mode) to a GridView appears "Enabled Pagination" and the pagination of the GV is automatic. I don't need code the PageIndexChanging event When I set the GV's Datasource property = "myDataTable" (in the vb code) I have to code too the PageIndexChanging event (vb code) The problem is the pagination of the GV because I have two
    Posted to Data Presentation Controls (Forum) by ClaCS on 9/17/2009
  • Problems with Gridview's PagerTemplate

    Hi! I have a little problem with a PagerTemplate. I want to obtain something like the picture But when I put a lblTotalPages inside the PagerTemplate the enumeration (1 2 3 4 ...) disappears and the PagerTemplate only shows the lblTotalPages with the total pages of the Gridview :S How Can I obtain the PagerTemplate like the picture? Regards
    Posted to Data Presentation Controls (Forum) by ClaCS on 9/17/2009
  • Re: Problems with my site and Firefox

    Yesterday I was editing the css file of my project, I ran again in firefox and it works :) ...So the problem was the css :S . A bit strange, isn't it? Thanks for all
    Posted to Client Side Web Development (Forum) by ClaCS on 8/14/2009
  • Problems with my site and Firefox

    Hi! I am developing a small site with asp.net and VB in VS2005. When I run the site with IE works very well but when I run it with Firefox, the controls of my site seem blocked. When I click any of them seem to not work. I can only access them with Tab key :S How can I fix this? ... maybe...some configuration?? Sorry for my english :P Regards
    Posted to Client Side Web Development (Forum) by ClaCS on 8/8/2009
  • Re: Problems with ReportViewer, an Image and TextBox

    The image is an embedded image Report > Embedded Images . Click on: New Image (name=myImage) and the value property for the image is the name of the embedded image = myImage Is it a bug of the reportViewer?? Regards
    Posted to Data Presentation Controls (Forum) by ClaCS on 7/6/2009
  • Re: Problems to logout without a loginstatus in vs2008

    Thanks. I'll try with that code
    Posted to Security (Forum) by ClaCS on 7/5/2009
  • Problems with ReportViewer, an Image and TextBox

    Hi! I have 2 problems with ReportViewer... 1. I put a embedded Image inside a report. The Image is shown in the design view of the report but when I run the project, in the browser the image doesn't show (It is shown like a white box with red X)...why?? 2. Then, I put a TextBox inside the report. This textbox will show the hour of the system. I have used the expression: =Now().toShortTime , but the hour doesn't shows AM or PM. I want to the textbox shows the hour with AM or PM. Is correct
    Posted to Data Presentation Controls (Forum) by ClaCS on 7/5/2009
Page 1 of 2 (11 items) 1 2 Next >