User Profile

Collapse

Profile Sidebar

Collapse
orked
orked
Last Activity: Mar 11 '12, 10:19 PM
Joined: Jan 31 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • orked
    started a topic How to Add Membership database to sql server>

    How to Add Membership database to sql server>

    i want to make Admin ,supervisor and member rules in my website i already did it with sql express but i can't do it with sql server i used aspnet_regsql.e xe to add aspnet database to sql server and i write the connection string in webconfig but i can't create new user when i create user and go to see it on aspnet_users i didn't find any thing.
    Any idea please
    Thanks,
    Orked
    See more | Go to post

  • orked
    replied to How to insert video in asp.net web page
    thank you for your help,
    i have another question if I want to play video from my website folder not from youtube how i can write this??

    Thanks,
    Orked
    See more | Go to post

    Leave a comment:


  • orked
    started a topic How to insert video in asp.net web page

    How to insert video in asp.net web page

    Hello,
    i want to insert video in my web page but the video didn't work it load for small time then it stop and i don't know why??
    i write this line in aspx page
    Code:
    <video src="ss.flv" width="500" height="150" controls>
    </video>
    and i try this line also but no progress it tell me missing plugin all time when i search for missing plugin i found no plugin available
    Code:
    <embed
    ...
    See more | Go to post

  • i already do that but i found the same error and i searched for this error a lot of time and execute all solutions i found them but no progress so i decided to change my OS to win7 and i didn't found any problem with it.

    Thanks
    Orked
    See more | Go to post

    Leave a comment:


  • orked
    started a topic failed to create database on windows vista

    failed to create database on windows vista

    Hello all,
    i have this error "Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed"
    when i want to create database or use already existing database,this error appeared to me since i changed my OS from Win xp to Windows vista.
    how i can solve this problem.

    Thanks in advanced,
    Orked
    See more | Go to post

  • orked
    replied to Time validation in a text box
    Doug,

    you can make the enable state to false in the properties of validator and change this state in the code behind the button you want to click on it like this
    Code:
    protected void Button1_Click(object sender, EventArgs e)
        {
            RegularExpressionValidator1.Enabled = true;
            
        }
    Orked
    See more | Go to post

    Leave a comment:


  • orked
    replied to Time validation in a text box
    Hello,
    you need Regular Expression validator to check on the input from user you can change validation expression on it's properties you can write this value on it
    [0-2][0-3]:[0-5][0-9]
    Try this i think it will help you.

    Orked
    See more | Go to post

    Leave a comment:


  • i know this point but i mean i have 2 hyper link they do not have text for them because i want to give them this value during runtime i will write the value in textbox and i will press button1 to apply this value and i will use hyper link 2 to reload page if i write test word in textbox and press button1 the text for hyper link 1 will be "test" if i press hyper link after that the original value for hyper link1 will back again but i want...
    See more | Go to post

    Leave a comment:


  • How to replace value of name for Hyperlink control during runtime

    Hello,
    i want to change name of hyper link during runtime ,i put text box i take value from text box and put it as name of hyper link but when i reload page the original name of hyper link back again what i can i do to save the new value for ever.

    Thanks
    Orked.
    See more | Go to post

  • orked
    started a topic resize background image for master page

    resize background image for master page

    i want to use image as background for master page, i want this image to resize it's size according to screen size or the browser i put image as background for master using this code
    Code:
    <body background="images/abstract-background.jpg">
    Thanks
    orked
    See more | Go to post

  • orked
    replied to how i can display numbers ?
    in PHP
    thank you very much i understand the point now.
    See more | Go to post

    Leave a comment:


  • orked
    started a topic how i can display numbers ?
    in PHP

    how i can display numbers ?

    i want to display number using echo, i wrote the following code
    Code:
    <?php
    $a= 01020;
    echo $a;
    ?>
    Code:
    the result :582
    i don't understand the result.
    this happen only if i add zero to the first place in the number i mean if i write 1020 there is no problem the number will be appeared as it.
    please i need an explanation for that.
    thanks in advance
    shreen
    See more | Go to post

  • problem with writing arabic into database from out

    i made insert data from excel sheet to database , the operation is done successfully but when i went to see the data inserted all english word was fine but arabic word wrote as (??????????) i tried more than one solution but there is no one fixed my problem any help please.
    See more | Go to post

  • orked
    replied to TextBox Validation
    you can make validation on text box from toolbox ,choose validation if you want write number only choose regular expression validator and write in its properties
    (validation expression)this expression(\d{n umbers of numbers you want to enter it })
    if you refuse null value this expression make what you want.
    Good luck.
    See more | Go to post

    Leave a comment:


  • orked
    started a topic Arabic in c#

    Arabic in c#

    i want to write some words in arabic language in my code to create PDF.
    i tried saving with coding and tried writting in html(dir rtl) but the two way failed
    i want to know how i can write arabic in c# 2005 and asp
    See more | Go to post

  • orked
    replied to import excel file
    at first my application wasn't in the root c:\Inetpub\wwwr oot\.....
    i put it in this root and i changed the path in my code to be suitable for path but the error still appear
    See more | Go to post

    Leave a comment:


  • orked
    replied to import excel file
    i made the source of excel file in c:websqleditor
    in this folder i made excel file called(test) as i wrote in code
    note if i changed the path the same error appear
    i wonder if i need any thing to map path
    See more | Go to post

    Leave a comment:


  • orked
    started a topic import excel file

    import excel file

    i want to import excel file to gridview but there was error(Failed to map this path "/xmltest.xml") and i couldn't handle it my code:
    Code:
    public void fillGrid()
        {
            DataSet ds = new DataSet();
            ds.ReadXml(Server.MapPath("../xmltest.xml"));
            GridView1.DataSource = ds;
            GridView1.DataBind();
        }
        protected void Page_Load(object sender, EventArgs
    ...
    See more | Go to post

  • orked
    started a topic Import Excel file to Gridview

    Import Excel file to Gridview

    i tried to import excel file into gridview but the code made this exception (Failed to map this path''xmlTest.x ml") i don't know why
    my code:
    Code:
    public void fillGrid()
        {
            DataSet ds = new DataSet();
            ds.ReadXml(Server.MapPath("../xmlTest.xml"));
            GridView1.DataSource = ds;
            GridView1.DataBind();
        }
        protected void Page_Load(object sender,
    ...
    See more | Go to post

  • orked
    replied to control on name
    your explaination for my problem is true .
    thank you very much, i found the soluation for my problem
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...