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 SkipVought 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: someTimeOnly
  • Order by date
  1. someTimeOnly

    Validation control problem

    Sorry everyone for the mess I spread up there. Actually, the problem I was facing, was that I was not aware that every control(almost) has a property CausesValidation, that is true bydefault. So every control with CausesValidation property true, will cause validatation, and thus no need to use...
  2. someTimeOnly

    Validation control problem

    ok i was missing private void button_Click(object sender, EventArgs e) { if(Page.IsValid) { Response.Redirect("somepage.aspx",false); } } But how to make validation be performed at client side.
  3. someTimeOnly

    Validation control problem

    when i run my project locally, it's validation controls perform validation but when i upload it to server it's validation controls: 1. perform validation when I don't use any coding in mysomebutton. 2. do not perform validation when mysomebutton has coding of...
  4. someTimeOnly

    Creating a link that includes a querystring variable.

    hm, it's working <asp:Repeater id="Repeater1" runat="server"> <ItemTemplate> <li> <%# DataBinder.Eval(Container.DataItem,"Value")%> <br> <a href="some.aspx?id=<%#whatToPlaceHere()%>">link</a><br> </li> </ItemTemplate> </asp:Repeater> Thanx
  5. someTimeOnly

    Creating a link that includes a querystring variable.

    Please help, having same issu How to change link's href dynamically, say something like this <asp:Repeater id="Repeater1" runat="server"> <ItemTemplate> <li> <%# DataBinder.Eval(Container.DataItem,"Value")%> <br> <a href='<%#whatToPlaceHere()%>'>link</a><br> </li> </ItemTemplate>...
  6. someTimeOnly

    Cann't access selected value in selection changed event of dropDown?

    ok, I'll give detail of my problem later as I'm not having code right here.
  7. someTimeOnly

    Cann't access selected value in selection changed event of dropDown?

    very strange, I cann't access ddMydorpDown.selected value in its selection changed event. I want to query to database in the selection chaged event on the basis of new selected value of dropdown. What am i missing? Please, let me know.
  8. someTimeOnly

    How to add &quot;submit button&quot; in htmlform control?

    hm, I think I couldn't make my problem clear. Acutally, I'm not using response.write for creating form. Instead, I'm asking an equivalent of this. Write("<form id='myID' method='post' action='that.aspx >") using the following approach. I'm coding things this way. // Create a new HtmlForm...
  9. someTimeOnly

    How to add &quot;submit button&quot; in htmlform control?

    say what is the equivalent code of the following code response.Write("<form id='myID' method='post' action='that.aspx>") using htmlform and adding to it an htmlinputbutton control to post the data.
  10. someTimeOnly

    How to display XML in webform?

    What's wrong here. Why it's not being displayed with label control. private void Page_Load(object sender, System.EventArgs e) { XmlDocument doc = new XmlDocument(); string xmlData = "<bookxmlns:bk='urn:samples'></book>"; doc.Load(new StringReader(xmlData)); Label1.Text =...
  11. someTimeOnly

    How to configure a project remotely?(urgent & basic)

    http://www.eggheadcafe.com/ng/microsoft.public.dotnet.faqs/post21344948.asp is mentioning this issue I think, but couldn't understand. Anyone outthere to resolve the issue.
  12. someTimeOnly

    How to configure a project remotely?(urgent & basic)

    oh sorry for mentioning urgent, seems against the rules. Anyhow it is!!!!!!!!!!!
  13. someTimeOnly

    How to configure a project remotely?(urgent & basic)

    How to configure a project remotely? say i make a simple asp.net web project. Ok it's being accessed http://localhost/myProj/default.aspx now there is a ftp server available. so how to take it on my ftp server. How will i configure it?
  14. someTimeOnly

    Could not load type 'MyProj.Global'

    i've get rid of this problem. Actually a couple of Resouces were marked yellow, so i re-added them and got rid of that problem. Why resources were marked yellow, not sure. Anyhow I brought the whole project folder to my pc from another pc.
  15. someTimeOnly

    Could not load type 'MyProj.Global'

    Could not load type 'MyProj.Global'. Source Error: Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="MyProj.Global" %> Im stuck with this error. Can't find a way around.
  16. someTimeOnly

    Default download:

    Come on fellows, it shouldn't be a big deal for u. I've to download a lot more stuff but this situation gonna be very teasing. linney, thanx for reply but still helpless.
  17. someTimeOnly

    Default download:

    How to disable "explorer default downlaod". Im having DAP(download accelerated plus) installed on my system and i set it to be my default downloder. It works as a default downloader but sometimes "explorer default downlaod" appears to start downloading. And i noticed it's this behaviour for...
  18. someTimeOnly

    &quot;Hosting site&quot; with WWD api's and C#

    Has anyone implement this sort of project? Can't figure out how to do this. Any good link.
  19. someTimeOnly

    What is a proper way to embed my code to new design?

    Design for ASP.NET app has changed, so what is proper way to embed my code with new design. the only way i can think about is keep on every control and pasting from older app.
  20. someTimeOnly

    Beginner: How to search a node from an xml file using c#

    Any Link?

Part and Inventory Search

Back
Top